MCP Servers
Overview
MCP Servers is a repository containing configurations and scripts for various Model Context Protocol (MCP) servers that enable the integration of external tools with language models like Claude in Cursor.
To use MCP Servers, ensure that Cursor is configured with the mcp.json file and that the MCP servers are running. For Firecrawl, a valid API key is required.
- Centralized configurations for multiple MCP servers - Integration with various external tools and services - Support for web scraping and database access
- Extracting web content using Firecrawl
- Interacting with PostgreSQL databases via Supabase
- Performing Git operations and filesystem access
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-daniboycg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-daniboycg"
]
}
}
}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-daniboycg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-daniboycg"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-daniboycg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-daniboycg"
]
}
}
}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-daniboycg": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-daniboycg"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-daniboycg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-daniboycg"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-daniboycg": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-daniboycg"
]
}
}
}FAQ
What is the purpose of MCP?
MCP allows language models to interact with external tools and services seamlessly.
How do I install Firecrawl?
You can install Firecrawl using the command: `npm install -g firecrawl-mcp`.
Can I contribute to this project?
Yes! You can fork the repository, create a feature branch, and submit a pull request.