mcp_servers
Collection of MCP Servers ofr use with anthropic and other models
Overview
mcp_servers is a collection of MCP servers designed for use with Anthropic and other models, providing a robust infrastructure for machine learning applications.
To use mcp_servers, clone the repository from GitHub and follow the setup instructions provided in the documentation to configure the servers for your specific model needs.
- Collection of pre-configured MCP servers for easy deployment - Compatibility with various machine learning models - Open-source and community-driven development
- Deploying machine learning models for research purposes
- Experimenting with different configurations of MCP servers
- Collaborating on machine learning projects with a shared infrastructure
Add to your AI client
Use these steps to connect 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": {
"mcp-servers-zate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-zate"
]
}
}
}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": {
"mcp-servers-zate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-zate"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-zate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-zate"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-servers-zate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-zate"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-zate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-zate"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-zate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-zate"
]
}
}
}