ProdE |Documentation | Free access to all ProdE features for first month
‘ProdE is the context layer which makes your AI coding agents such as Cursor, Copilot, Windsurf understand multi repo and microservice codebases to eliminate hallucinations and reduce errors.’
ProdE MCP Server bridges the gap between your codebase and AI coding assistants by providing deep contextual understanding of your repositories. Instead of working with generic code suggestions, get AI responses that understand your specific project structure, patterns, and history across multiple codebases.
- Cross-Repository Insights: Query across multiple codebases simultaneously
- Improved AI Accuracy: AI understands your project structure and patterns
- Contextual Code Understanding: AI assistance based on your actual codebase, not generic examples
- Secure Integration: Token-based authentication with encrypted communication
- Wide Tool Compatibility: Supports 8+ popular coding assistants and editors
Example: A new developer joins your team and needs to understand how user authentication flows through your 15+ microservices across frontend, backend, and mobile repositories.
What ProdE does: Simultaneously analyzes authentication patterns across all repositories in your knowledge layer to provide a complete cross-service authentication flow explanation.
Example: You're building a feature that needs to integrate with internal APIs scattered across different team repositories, but documentation is outdated or missing.
What ProdE does: Searches across all connected repositories to find current API definitions, real usage examples, and integration patterns from multiple services in one query.
Example: You need to refactor a shared utility library used across 20+ repositories, but want to understand all usage patterns and potential breaking changes.
What ProdE does: Analyzes usage patterns across all repositories simultaneously to identify every implementation, dependency, and similar code that could be affected by your changes.
Example: A production issue involves data flow through multiple services (payment-service, user-service, notification-service, audit-service), and you need to trace the complete request lifecycle.
What ProdE does: Connects the dots between all involved repositories to map the complete data flow, error handling, and logging patterns across your entire distributed system.
Example: You're implementing caching for a new service and want to see what caching strategies, configurations, and patterns your team has successfully used across different projects.
What ProdE does: Analyzes caching implementations across all repositories in your knowledge layer to show proven patterns, configuration examples, and architectural decisions from your entire codebase ecosystem.
The ProdE MCP server provides the following tools:
get_all_repositories
- Retrieve information about all repositories in your knowledge layerask_specific_codebase
- Ask questions about a specific repository/codebaseask_all_codebases
- Ask questions across all your repositories
Tool | Protocol | Configuration File | Status |
---|---|---|---|
Cursor | streamable-http , deeplink |
~/.cursor/mcp.json |
✅ Supported |
Cline | streamable-http |
cline_mcp_settings.json |
✅ Supported |
VS Code (GitHub Copilot) | streamable-http |
.vscode/mcp.json |
✅ Supported |
Windsurf | SSE |
~/.codeium/windsurf/mcp_config.json |
✅ Supported |
Augment Code | command-based |
settings.json |
✅ Supported |
RooCode | streamable-http |
mcp_settings.json |
✅ Supported |
Gemini CLI | HTTP URL |
~/.gemini/settings.json |
✅ Supported |
OpenHands | stdio |
MCP Configuration UI | ✅ Supported (Local only) |
- Sign up for a ProdE account
- Connect your git provider:
- GitHub ✅ Supported
- Bitbucket ✅ Supported
- GitLab 🚧 Coming soon
- Authorize ProdE to Read-only access of your repositories
- Browse your available repositories
- Select the repositories you want to add to your knowledge layer
- ProdE will analyze and index your selected codebases for contextual understanding
- Navigate to MCP Settings in your dashboard
- Copy your authentication token
- This token will be used to connect your coding assistant to the ProdE MCP server
Select your preferred coding assistant from the supported tools above and follow the specific setup instructions.
Option A: Deep Link (Automatic) Simply click the "Connect with Cursor" button in your ProdE dashboard for automatic setup.
Option B: Manual Configuration
{
"mcpServers": {
"prode-codebase-understanding": {
"type": "streamable-http",
"url": "https://api.prode.ai/code-parsing/v1/mcp/",
"note": "The mcp server provides codebase understanding by prode.",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}
Create .vscode/mcp.json
in your project root:
{
"servers": {
"prode-codebase-understanding": {
"type": "http",
"url": "https://api.prode.ai/code-parsing/v1/mcp/",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}
Create cline_mcp_settings.json
:
{
"mcpServers": {
"prode-codebase-understanding": {
"name": "Prode Codebase Understanding",
"type": "streamableHttp",
"url": "https://api.prode.ai/code-parsing/v1/mcp/",
"note": "The mcp server provides codebase understanding by prode.",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
},
"alwaysAllow": ["get_all_repositories", "ask_specific_codebase", "ask_all_codebases"],
"disabled": false
}
}
}
Create ~/.codeium/windsurf/mcp_config.json
:
{
"mcpServers": {
"prode-codebase-understanding": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.prode.ai/code-parsing/v1/mcp/",
"--header",
"Authorization: Bearer YOUR_TOKEN_HERE"
]
}
}
}
Add to MCP configuration in OpenHands settings:
{
"sse_servers": [],
"stdio_servers": [
{
"name": "prode-codebase-understanding",
"command": "npx",
"args": [
"mcp-remote",
"https://api.prode.ai/code-parsing/v1/mcp/",
"--header",
"Authorization: Bearer YOUR_TOKEN_HERE"
],
"env": {}
}
],
"shttp_servers": []
}
- Active ProdE account with repositories in knowledge layer
- Valid authentication token from ProdE dashboard
- Documentation: https://docs.prode.ai
- Community: Join our discord community for support and updates
This project is licensed under the terms specified by ProdE. Please refer to License
Ready to enhance your coding experience? Get started by signing up for ProdE and connecting your first repository to the knowledge layer.