This repository contains configurations and scripts for various MCP (Model Context Protocol) servers that enable the integration of external tools with language models like Claude in Cursor.
MCP (Model Context Protocol) is a standard that allows language models to interact with external tools and services. This repository centralizes various MCP servers to facilitate their use in Cursor and other compatible clients.
MCP_servers/
├── .gitignore # Git exclusion configuration
├── markdown_docs/ # Documents extracted with Firecrawl
├── scripts/ # Scripts organized by feature
│ └── firecrawl/ # Scripts related to Firecrawl
│ └── scraper.py # Script for web content extraction
└── mcp.json # MCP server configuration for Cursor
This repository includes configurations for several MCP servers:
Firecrawl is a powerful tool for web content extraction that integrates with Cursor via MCP.
npm install -g firecrawl-mcp
In Cursor, navigate to:
firecrawl-mcp
FIRECRAWL_API_KEY=your-api-key
from firecrawl import FirecrawlApp
# Initialize with your API key
app = FirecrawlApp(api_key='your-api-key')
# Extract content from a URL
result = app.scrape_url('https://example.com')
# Save the result
with open('result.md', 'w') as f:
f.write(result['markdown'])
To use any of the configured MCP servers:
mcp.json
fileTo contribute to this project:
Developed with ❤️ to enhance tool integration with AI