MCP Servers
ActiveDescription
MCP Servers provides a large collection of reusable Model Context Protocol server implementations, giving agents standardized tool capabilities.
Key Features
- Official reference implementations - authoritative server collection maintained by the MCP steering group showcasing protocol features and SDK usage
- Multi-language SDK support - 10 SDKs available: TypeScript, Python, Go, Rust, Java, Kotlin, C#, Ruby, Swift, PHP
- Core reference servers - Everything (testing), Fetch (web scraping), Filesystem, Git, Memory (knowledge graph), Sequential Thinking, Time
- Claude Desktop integration - complete MCP client configuration examples ready to use with Claude Desktop
- Education-oriented design - serves as learning reference and best practice for developers building custom MCP servers
Use Cases
Tags
Categories
Quick Start
# Start the Memory server (TypeScript)
npx -y @modelcontextprotocol/server-memory
# Start the Git server (Python)
uvx mcp-server-git --repository /path/to/repo
# Use in Claude Desktop configuration:
# claude_desktop_config.json
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/files"]
}
}
}