deepcon-mcp
v1.0.8
Published
MCP server for DeepCon - AI-powered package documentation and code search
Maintainers
Readme
DeepCon MCP
MCP (Model Context Protocol) server for DeepCon - AI-powered package documentation and code search.
Features
- 🔍 Smart Package Search: Search across PyPI, NPM, Crates.io, and Go modules
- 📚 Documentation Search: Semantic search with regex filtering for precise results
- ⚡ Fast & Reliable: Hosted on Google Cloud Run with automatic scaling
- 🔐 Secure: API key authentication with rate limiting
Installation
For Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"deepcon": {
"command": "npx",
"args": ["-y", "deepcon-mcp"],
"env": {
"DEEPCON_API_KEY": "your_api_key_here"
}
}
}
}For Claude Code
claude mcp add deepcon -e DEEPCON_API_KEY=your_api_key -- npx -y deepcon-mcpFor Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"deepcon": {
"command": "npx",
"args": ["-y", "deepcon-mcp"],
"env": {
"DEEPCON_API_KEY": "your_api_key_here"
}
}
}
}For Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"deepcon": {
"command": "npx",
"args": ["-y", "deepcon-mcp"],
"env": {
"DEEPCON_API_KEY": "your_api_key_here"
}
}
}
}Getting Started
- Get your API key: Visit deepcon.ai/dashboard/api-keys
- Install the package: Follow the instructions above for your IDE
- Start using: Ask your AI assistant to search packages or documentation
Available Tools
search_documentation
Search package documentation using semantic search with regex filtering.
Example prompts:
- "Search the React documentation for hooks usage"
- "Find examples of authentication in the Express docs"
- "Show me error handling patterns in the Rust standard library"
list_docs
List available documentation packages.
Example prompts:
- "What documentation is available?"
- "Show me all Python packages"
Plans & Rate Limits
- Free: 1,000 requests/month, 10 requests/hour
- Basic: 10,000 requests/month, 100 requests/hour
- Pro: 100,000 requests/month, 1,000 requests/hour
Visit deepcon.ai/pricing for details.
Support
- Documentation: deepcon.ai/docs
- Issues: github.com/OPACTOR-DEV/deepcon-mcp/issues
- Website: deepcon.ai
License
MIT
