Context Awesome

AI 与智能体

by bh-rat

为 AI agents 提供 8,500+ awesome lists 与百万级条目的即时访问,便于深度研究、学习和知识工作。

什么是 Context Awesome

为 AI agents 提供 8,500+ awesome lists 与百万级条目的即时访问,便于深度研究、学习和知识工作。

核心功能 (2 个工具)

find_awesome_section

Discovers sections/categories across awesome lists matching a search query and returns matching sections from awesome lists. You MUST call this function before 'get_awesome_items' to discover available sections UNLESS the user explicitly provides a githubRepo or listId. Selection Process: 1. Analyze the query to understand what type of resources the user is looking for 2. Return the most relevant matches based on: - Name similarity to the query and the awesome lists section - Category/section relevance of the awesome lists - Number of items in the section - Confidence score Response Format: - Returns matching sections of the awesome lists with metadata - Includes repository information, item counts, and confidence score - Use the githubRepo or listId with relevant sections from results for get_awesome_items For ambiguous queries, multiple relevant sections will be returned for the user to choose from.

get_awesome_items

Retrieves items from a specific awesome list or section with token limiting. You must call 'find_awesome_section' first to discover available sections, UNLESS the user explicitly provides a githubRepo or listId.

README

context-awesome : awesome references for your agents Awesome

MCP Server

A Model Context Protocol (MCP) server that provides access to all the curated awesome lists and their items. It can provide the best resources for your agent from sections of the 8500+ awesome lists on github and more then 1mn+ (growing) awesome row items.

What are Awesome Lists? Awesome lists are community-curated collections of the best tools, libraries, and resources on any topic - from machine learning frameworks to design tools. By adding this MCP server, your AI agents get instant access to these high-quality, vetted resources instead of relying on random web searches.

Perfect for :

  1. Knowledge worker agents to get the most relevant references for their work
  2. The source for the best learning resources
  3. Deep research can quickly gather a lot of high quality resources for any topic.
  4. Search agents

https://github.com/user-attachments/assets/babab991-e4ff-4433-bdb7-eb7032e9cd11

Two Ways to Use Context Awesome

ModeInstallGood for
MCP Serverpoint your agent at the hosted URL or spawn context-awesome-mcpClaude Desktop, Cursor, Windsurf, VS Code — agents that natively speak MCP
CLInpm install -g context-awesomeScripts, shell workflows, editors without MCP support, CI jobs

Both modes ship from the same npm package (context-awesome) and hit the same hosted backend.

MCP Tools

Every MCP tool has a 1:1 CLI subcommand — the server and the CLI expose the same operations.

ToolCLI equivalentWhat it does
find_awesome_sectioncontext-awesome sections <query...>Discover sections/categories across awesome lists matching a query
search_awesome_itemscontext-awesome search <query...>Full-text search across individual items (tools/libraries/resources)
get_awesome_itemscontext-awesome items <target>Fetch items from a known list + section, token-budgeted

CLI Commands

The CLI (context-awesome) talks directly to the hosted backend. For the MCP server, use the separate context-awesome-mcp binary (see Installation — MCP Clients below).

code
context-awesome <command> [options]

Commands:
  sections <query...>        Find sections matching a query
  search <query...>          Search items (e.g., context-awesome search "postgres orm")
  items <target>             Fetch items from a list (by owner/repo or listId)

Globals:
  --api-host <url>           Backend API host (env: CONTEXT_AWESOME_API_HOST)
  --api-key <key>            API key (env: CONTEXT_AWESOME_API_KEY)
  --json                     Emit raw JSON (for scripts)

Install the CLI

bash
npm install -g context-awesome
context-awesome --help
context-awesome search "rate limiter"
context-awesome sections "graph databases"

Use the CLI without installing

bash
npx context-awesome search "vector database"

Installation — MCP Clients

Remote Server (Recommended)

Context Awesome is available as a hosted MCP server. No installation required.

<details> <summary><b>Install in Cursor</b></summary>

Go to: SettingsCursor SettingsMCPAdd new global MCP server

json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Claude Code</b></summary>
sh
claude mcp add --transport http context-awesome https://www.context-awesome.com/api/mcp
</details> <details> <summary><b>Install in Claude Desktop</b></summary>

Settings → Connectors → Add Custom Connector.

  • Name: Context Awesome
  • URL: https://www.context-awesome.com/api/mcp
</details> <details> <summary><b>Install in Windsurf / VS Code / Zed / JetBrains / LM Studio / ...</b></summary>

Use the same URL (https://www.context-awesome.com/api/mcp) with each client's "add remote MCP" UI. See the dedicated sections below for exact snippets.

</details>

Local stdio (Claude Desktop, offline-capable)

json
{
  "mcpServers": {
    "context-awesome": {
      "command": "npx",
      "args": ["-y", "context-awesome-mcp", "serve", "--transport", "stdio"],
      "env": {
        "CONTEXT_AWESOME_API_HOST": "https://api.context-awesome.com"
      }
    }
  }
}

Local HTTP transport (for custom integrations)

bash
npx context-awesome-mcp serve --transport http --port 3001
# then point your client at http://localhost:3001/mcp

Local Development

bash
git clone https://github.com/bh-rat/context-awesome.git
cd context-awesome
npm install
npm run build

# CLI
./build/cli.js search "graph databases"

# MCP server (stdio)
./build/index.js --transport stdio

# MCP Inspector
npm run inspector

Backend service

This MCP server and CLI connect to backend API service that handles the heavy lifting of awesome list processing.

The backend service will be open-sourced soon, enabling the community to contribute to and benefit from the complete context-awesome ecosystem.

Additional Installation Methods

<details> <summary><b>Install in Cline</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Zed</b></summary>
json
{
  "context_servers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Augment Code</b></summary>
  1. Click the hamburger menu
  2. Select Settings
  3. Navigate to Tools
  4. Click + Add MCP
  5. Enter URL: https://www.context-awesome.com/api/mcp
  6. Name: Context Awesome
</details> <details> <summary><b>Install in Roo Code</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "type": "streamable-http",
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Gemini CLI</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "httpUrl": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Opencode</b></summary>
json
"mcp": {
  "context-awesome": {
    "type": "remote",
    "url": "https://www.context-awesome.com/api/mcp",
    "enabled": true
  }
}
</details> <details> <summary><b>Install in JetBrains AI Assistant</b></summary>
  1. Go to Settings -> Tools -> AI Assistant -> Model Context Protocol (MCP)
  2. Click + Add
  3. Configure URL: https://www.context-awesome.com/api/mcp
  4. Click OK and Apply
</details> <details> <summary><b>Install in Kiro</b></summary>
  1. Navigate Kiro > MCP Servers
  2. Click + Add
  3. Configure URL: https://www.context-awesome.com/api/mcp
  4. Click Save
</details> <details> <summary><b>Install in Trae</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Amazon Q Developer CLI</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Warp</b></summary>
  1. Navigate Settings > AI > Manage MCP servers
  2. Click + Add
  3. Configure URL: https://www.context-awesome.com/api/mcp
  4. Click Save
</details> <details> <summary><b>Install in Copilot Coding Agent</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "type": "http",
      "url": "https://www.context-awesome.com/api/mcp",
      "tools": ["find_awesome_section", "search_awesome_items", "get_awesome_items"]
    }
  }
}
</details> <details> <summary><b>Install in LM Studio</b></summary>
  1. Navigate to Program > Install > Edit mcp.json
  2. Add:
json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in BoltAI</b></summary>
json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Perplexity Desktop</b></summary>
  1. Navigate Perplexity > Settings
  2. Select Connectors
  3. Click Add Connector
  4. Select Advanced
  5. Enter Name: Context Awesome
  6. Enter URL: https://www.context-awesome.com/api/mcp
</details> <details> <summary><b>Install in Visual Studio 2022</b></summary>
json
{
  "inputs": [],
  "servers": {
    "context-awesome": {
      "type": "http",
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Crush</b></summary>
json
{
  "$schema": "https://charm.land/crush.json",
  "mcp": {
    "context-awesome": {
      "type": "http",
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Rovo Dev CLI</b></summary>
bash
acli rovodev mcp

Then add:

json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details> <details> <summary><b>Install in Zencoder</b></summary>
  1. Go to Zencoder menu (...)
  2. Select Agent tools
  3. Click Add custom MCP
  4. Name: Context Awesome
  5. URL: https://www.context-awesome.com/api/mcp
</details> <details> <summary><b>Install in Qodo Gen</b></summary>
  1. Open Qodo Gen chat panel
  2. Click Connect more tools
  3. Click + Add new MCP
  4. Add:
json
{
  "mcpServers": {
    "context-awesome": {
      "url": "https://www.context-awesome.com/api/mcp"
    }
  }
}
</details>

License

MIT

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Ensure all tests pass
  5. Submit a pull request

Support

For issues and questions:

Attribution

This project uses data from over 8,500 awesome lists on GitHub. See ATTRIBUTION.md for a complete list of all repositories whose data is included.

Credits

Built with:

常见问题

Context Awesome 是什么?

为 AI agents 提供 8,500+ awesome lists 与百万级条目的即时访问,便于深度研究、学习和知识工作。

Context Awesome 提供哪些工具?

提供 2 个工具,包括 find_awesome_section、get_awesome_items

相关 Skills

Claude接口

by anthropics

Universal
热门

面向接入 Claude API、Anthropic SDK 或 Agent SDK 的开发场景,自动识别项目语言并给出对应示例与默认配置,快速搭建 LLM 应用。

想把Claude能力接进应用或智能体,用claude-api上手快、兼容Anthropic与Agent SDK,集成路径清晰又省心

AI 与智能体
未扫描149.6k

RAG架构师

by alirezarezvani

Universal
热门

聚焦生产级RAG系统设计与优化,覆盖文档切块、检索链路、索引构建、召回评估等关键环节,适合搭建可扩展、高准确率的知识库问答与检索增强应用。

面向RAG落地,把知识库、向量检索和生成链路系统串联起来,做架构设计时更清晰,也更少踩坑。

AI 与智能体
未扫描17.9k

多智能体架构

by alirezarezvani

Universal
热门

聚焦多智能体系统架构设计,梳理 Supervisor、Swarm、分层和 Pipeline 等模式,覆盖角色定义、通信协作与性能评估,适合规划稳健可扩展的 AI agent 编排方案。

帮你系统解决多智能体应用的架构设计与协同编排难题,适合构建复杂 AI 工作流,成熟度高、社区认可也很亮眼。

AI 与智能体
未扫描17.9k

相关 MCP Server

知识图谱记忆

编辑精选

by Anthropic

热门

Memory 是一个基于本地知识图谱的持久化记忆系统,让 AI 记住长期上下文。

帮 AI 和智能体补上“记不住”的短板,用本地知识图谱沉淀长期上下文,连续对话更聪明,数据也更可控。

AI 与智能体
87.1k

顺序思维

编辑精选

by Anthropic

热门

Sequential Thinking 是让 AI 通过动态思维链解决复杂问题的参考服务器。

这个服务器展示了如何让 Claude 像人类一样逐步推理,适合开发者学习 MCP 的思维链实现。但注意它只是个参考示例,别指望直接用在生产环境里。

AI 与智能体
87.1k

PraisonAI

编辑精选

by mervinpraison

热门

PraisonAI 是一个支持自反思和多 LLM 的低代码 AI 智能体框架。

如果你需要快速搭建一个能 24/7 运行的 AI 智能体团队来处理复杂任务(比如自动研究或代码生成),PraisonAI 的低代码设计和多平台集成(如 Telegram)让它上手极快。但作为非官方项目,它的生态成熟度可能不如 LangChain 等主流框架,适合愿意尝鲜的开发者。

AI 与智能体
8.1k

评论