MCP-Servers
This repo uses CAMEL AI to create mcp servers for various use cases
Overview
MCP-Servers is a repository that utilizes CAMEL AI to create MCP servers tailored for various use cases.
To use MCP-Servers, clone the repository from GitHub and follow the setup instructions provided in the documentation to deploy your own MCP servers.
- Utilizes advanced CAMEL AI technology for server creation. - Supports multiple use cases for flexibility. - Open-source repository for community contributions.
- Creating custom game servers.
- Deploying application servers for testing.
- Setting up development environments quickly.
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-parthshr370": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-parthshr370"
]
}
}
}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-parthshr370": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-parthshr370"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-parthshr370": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-parthshr370"
]
}
}
}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-parthshr370": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-parthshr370"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-parthshr370": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-parthshr370"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-parthshr370": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-parthshr370"
]
}
}
}FAQ
What is CAMEL AI?
CAMEL AI is an artificial intelligence framework that enhances server creation and management.
Is MCP-Servers free to use?
Yes! MCP-Servers is open-source and free for everyone to use.
How can I contribute to MCP-Servers?
You can contribute by submitting pull requests or reporting issues on the GitHub repository.