📌 Awesome MCP Servers
Overview
Awesome MCP Servers is a curated list of Model Context Protocol (MCP) servers that enhance AI capabilities by providing access to local and remote resources.
Users can explore the list of MCP servers, follow tutorials for setup, and utilize various clients and utilities linked within the repository.
- Comprehensive list of MCP servers categorized by functionality. - Tutorials for setting up and using MCP servers. - Links to compatible clients and frameworks for building MCP servers.
- Integrating AI models with external systems like databases and APIs.
- Automating tasks through browser automation and command line execution.
- Enhancing security through threat monitoring and protection.
Add to your AI client
Use these steps to connect 📌 Awesome MCP Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"awesome-mcp-servers-sagarjethi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-awesome-mcp-servers-sagarjethi"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"awesome-mcp-servers-sagarjethi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-awesome-mcp-servers-sagarjethi"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"awesome-mcp-servers-sagarjethi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-awesome-mcp-servers-sagarjethi"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"awesome-mcp-servers-sagarjethi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-awesome-mcp-servers-sagarjethi"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"awesome-mcp-servers-sagarjethi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-awesome-mcp-servers-sagarjethi"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"awesome-mcp-servers-sagarjethi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-awesome-mcp-servers-sagarjethi"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is an open protocol that allows AI models to interact securely with external systems.
How can I contribute to the Awesome MCP Servers list?
You can submit a pull request to the GitHub repository to share your MCP server.
Are there any community resources available?
Yes! There are community discussions on Reddit and a Discord server for live support.