context-awesome
The context-awesome server gives AI agents access to 8,500+ curated awesome lists with 1M+ items, enabling discovery and retrieval of high-quality, community-vetted tools, libraries, and references.
Find Awesome List Sections (
find_awesome_section): Search for relevant sections/categories across awesome lists using natural language. Returns section names, repository info, item counts, and confidence scores. Useful as a first step before fetching items.Get Awesome List Items (
get_awesome_items): Retrieve actual items from a specific awesome list or section, with support for:Fetching by GitHub repo path (e.g.,
sindresorhus/awesome) or list UUIDFiltering by section/category and subcategory
Token budgeting to control response size
Pagination for retrieving additional results
Integrations: Works via MCP with Claude Desktop, Cursor, Windsurf, VS Code, JetBrains, and other MCP-compatible clients, as well as via CLI for scripts and shell workflows.
Provides access to curated awesome lists and their items, allowing agents to search through 8500+ awesome lists on GitHub and retrieve high-quality, vetted resources on any topic instead of relying on random web searches.
Accesses awesome list data from GitHub repositories, enabling retrieval of curated resources and tools from the GitHub awesome lists ecosystem.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@context-awesomefind the best resources for learning React hooks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
context-awesome : awesome references for your agents 
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 :
Knowledge worker agents to get the most relevant references for their work
The source for the best learning resources
Deep research can quickly gather a lot of high quality resources for any topic.
Search agents
https://github.com/user-attachments/assets/babab991-e4ff-4433-bdb7-eb7032e9cd11
Two Ways to Use Context Awesome
Mode | Install | Good for |
MCP Server | point your agent at the hosted URL or spawn | Claude Desktop, Cursor, Windsurf, VS Code — agents that natively speak MCP |
CLI |
| Scripts, shell workflows, editors without MCP support, CI jobs |
Both modes ship from the same npm package (context-awesome) and hit the same hosted backend.
Related MCP server: AI Agent Marketplace Index Search
MCP Tools
Every MCP tool has a 1:1 CLI subcommand — the server and the CLI expose the same operations.
Tool | CLI equivalent | What it does |
|
| Discover sections/categories across awesome lists matching a query |
|
| Full-text search across individual items (tools/libraries/resources) |
|
| 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).
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
npm install -g context-awesome
context-awesome --help
context-awesome search "rate limiter"
context-awesome sections "graph databases"Use the CLI without installing
npx context-awesome search "vector database"Installation — MCP Clients
Remote Server (Recommended)
Context Awesome is available as a hosted MCP server. No installation required.
Go to: Settings → Cursor Settings → MCP → Add new global MCP server
{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}claude mcp add --transport http context-awesome https://www.context-awesome.com/api/mcpSettings → Connectors → Add Custom Connector.
Name:
Context AwesomeURL:
https://www.context-awesome.com/api/mcp
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.
Local stdio (Claude Desktop, offline-capable)
{
"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)
npx context-awesome-mcp serve --transport http --port 3001
# then point your client at http://localhost:3001/mcpLocal Development
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 inspectorBackend 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
{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}{
"context_servers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}Click the hamburger menu
Select Settings
Navigate to Tools
Click + Add MCP
Enter URL:
https://www.context-awesome.com/api/mcpName: Context Awesome
{
"mcpServers": {
"context-awesome": {
"type": "streamable-http",
"url": "https://www.context-awesome.com/api/mcp"
}
}
}{
"mcpServers": {
"context-awesome": {
"httpUrl": "https://www.context-awesome.com/api/mcp"
}
}
}"mcp": {
"context-awesome": {
"type": "remote",
"url": "https://www.context-awesome.com/api/mcp",
"enabled": true
}
}Go to
Settings->Tools->AI Assistant->Model Context Protocol (MCP)Click
+ AddConfigure URL:
https://www.context-awesome.com/api/mcpClick
OKandApply
Navigate
Kiro>MCP ServersClick
+ AddConfigure URL:
https://www.context-awesome.com/api/mcpClick
Save
{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}Navigate
Settings>AI>Manage MCP serversClick
+ AddConfigure URL:
https://www.context-awesome.com/api/mcpClick
Save
{
"mcpServers": {
"context-awesome": {
"type": "http",
"url": "https://www.context-awesome.com/api/mcp",
"tools": ["find_awesome_section", "search_awesome_items", "get_awesome_items"]
}
}
}Navigate to
Program>Install>Edit mcp.jsonAdd:
{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}Navigate
Perplexity>SettingsSelect
ConnectorsClick
Add ConnectorSelect
AdvancedEnter Name:
Context AwesomeEnter URL:
https://www.context-awesome.com/api/mcp
{
"inputs": [],
"servers": {
"context-awesome": {
"type": "http",
"url": "https://www.context-awesome.com/api/mcp"
}
}
}{
"$schema": "https://charm.land/crush.json",
"mcp": {
"context-awesome": {
"type": "http",
"url": "https://www.context-awesome.com/api/mcp"
}
}
}acli rovodev mcpThen add:
{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}Go to Zencoder menu (...)
Select Agent tools
Click Add custom MCP
Name:
Context AwesomeURL:
https://www.context-awesome.com/api/mcp
Open Qodo Gen chat panel
Click Connect more tools
Click + Add new MCP
Add:
{
"mcpServers": {
"context-awesome": {
"url": "https://www.context-awesome.com/api/mcp"
}
}
}License
MIT
Contributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch
Add tests for new functionality
Ensure all tests pass
Submit a pull request
Support
For issues and questions:
GitHub Issues: https://github.com/bh-rat/context-awesome/issues
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:
Inspired by context7 MCP server patterns
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bh-rat/context-awesome'
If you have feedback or need assistance with the MCP directory API, please join our Discord server