mcp-server-collector MCP server
A MCP Server used to collect MCP Servers over the internet.
Overview
mcp-server-collector is a tool designed to collect MCP servers from the internet, allowing users to submit MCP servers into a centralized directory.
To use mcp-server-collector, set up the required .env configuration file with the necessary API keys and endpoints, then utilize the provided tools to extract or submit MCP servers.
- Extracts MCP servers from a specified URL or content. - Allows users to submit their MCP server to a directory like mcp.so. - Configurable through an .env file for seamless integration.
- Collecting MCP servers for analysis and networking.
- Submitting new MCP servers to a public directory.
- Extracting MCP server data for research purposes.
Add to your AI client
Use these steps to connect mcp-server-collector MCP server 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-server-collector-chatmcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-collector-chatmcp"
]
}
}
}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-server-collector-chatmcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-collector-chatmcp"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-collector-chatmcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-collector-chatmcp"
]
}
}
}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-server-collector-chatmcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-collector-chatmcp"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-collector-chatmcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-collector-chatmcp"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-collector-chatmcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-collector-chatmcp"
]
}
}
}