AnandPilania/dev-mcp-server
AI that understands YOUR codebase
Platform-specific configuration:
{
"mcpServers": {
"dev-mcp-server": {
"command": "npx",
"args": [
"-y",
"dev-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> AI that understands your codebase, not just the internet.
Inspired by *"How I Built an MCP Server That Made Developers Faster and Work Easier"* ā a full implementation of the Model Context Platform concept: instead of generic AI answers, every response is grounded in your actual code, error logs, API behavior, and bug history.
---
Every team has this invisible tax:
The root cause isn't bad code. It's a context problem ā knowledge scattered across services, logs, configs, and people's heads.
---
Before answering any question, the AI looks up your actual system. It knows:
---
| Query | Endpoint | Example | | ------------------------------------ | ------------------------ | ---------------------------------------------------- | | š Why is this failing? | POST /api/query/debug | "Why is ClassCastException thrown in UserService?" | | š Where is this used? | POST /api/query/usage | "Where is getUserById called?" | | š„ If I change this, what breaks? | POST /api/query/impact | "If I change the User model, what breaks?" |
---
# In your project root (where your .env lives):
npx dev-mcp-server ingest ./src
npx dev-mcp-server query "Why is getUserById throwing?"
npx dev-mcp-server queLoading reviews...