spinov001-art/claude-mcp-cookbook
š¤ Build AI agents with Claude + MCP servers. 15 ready-to-use examples: web scraping, market research, data analysis, automation. Copy-paste Python code.
Platform-specific configuration:
{
"mcpServers": {
"claude-mcp-cookbook": {
"command": "npx",
"args": [
"-y",
"claude-mcp-cookbook"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> 15 ready-to-use MCP server examples for building AI agents with Claude Desktop.
Stop reading MCP documentation. Start building.
MCP (Model Context Protocol) lets Claude Desktop talk to external tools ā APIs, databases, scrapers. But the official docs are abstract. This cookbook gives you working code you can copy-paste.
git clone https://github.com/spinov001-art/claude-mcp-cookbook.git
cd claude-mcp-cookbook
pip install -r requirements.txt
python examples/web_scraper_server.pyThen add to your claude_desktop_config.json:
{
"mcpServers": {
"web-scraper": {
"command": "python",
"args": ["examples/web_scraper_server.py"]
}
}
}| # | Server | What It Does | Difficulty | |---|--------|-------------|------------| | 1 | Web Scraper | Scrape any URL, extract text/links | ā Easy | | 2 | Market Research | Company analysis from public data | āā Medium | | 3 | News Monitor | Track topics across news sources | ā Easy | | 4 | GitHub Analyzer | Repo stats, trending repos, comparisons | ā Easy | | 5 | arXiv Search | Find research papers by topic | ā Easy | | 6 | SEO Auditor | Check page SEO, meta tags, speed | āā Medium | | 7 | Data Pipeline | ETL from APIs to local database | āā Medium | | 8 | Lead Generator | Find companies by industry/size | āā Medium | | 9 | Social Monitor | Track brand mentions on HN/Reddit | āā Medium | | 10 | PDF Analyzer | Extract and summarize PDF content | ā Easy | | 11 | API Tester | Test any REST API endpoint | ā Easy | | 12 | Code Reviewer | Static analysis + suggestions | āāā Advanced | | 13 | DB Explorer | Query SQLite/PostgreSQL naturally | āā Medium | | 14 | Email Drafter | Generate emails from templates | ā Easy | | 15 | Competitor Tracker | Monitor competitor changes | āāā Advanced |
You (Claude Desktop) ā MCP Protocol ā Your Server (Python) ā External DataYour
Loading reviews...