MustafaYamin/100-free-mcp-servers
A curated collection of 100 free and open-source Model Context Protocol (MCP) servers with complete documentation.
Platform-specific configuration:
{
"mcpServers": {
"100-free-mcp-servers": {
"command": "npx",
"args": [
"-y",
"100-free-mcp-servers"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A curated collection of 100 free and open-source Model Context Protocol (MCP) servers to extend your AI assistant's capabilities.
---
Model Context Protocol (MCP) is an open protocol that enables AI assistants to interact with external tools and data sources. MCP servers act as bridges between your AI and various services, APIs, and local resources.
Add servers to your settings.json:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "your_token_here"
}
}
}
}Add to claude_desktop_config.json:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"]
}
}
}---
| # | Server | Description | Install | |---|--------|-------------|---------| | 1 | Git | Git repository operations | npx -y @modelcontextprotocol/server-git | | 2 | GitHub | GitHub API integration | npx -y @modelcontextprotocol/server-github |
Loading reviews...