@apeinspire/devcontext-mcp
v0.1.1
Published
MCP server that gives Claude Code deep project context — structure, git, file search, and code summaries
Maintainers
Readme
DevContext MCP Server
MCP server that gives Claude Code (or any MCP-compatible AI tool) instant project context — structure, git state, file search, and summaries. No more ls / find / git log chain.
Tools
| Tool | What it does |
|------|-------------|
| get_project_structure | Directory tree with smart filtering (skips node_modules, .git, etc.) |
| get_git_context | Branch, recent commits, staged/unstaged/untracked |
| find_files | Glob-based file search with file sizes |
| get_file_summary | Metadata, imports, exports, and preview of any file |
Install
npm install -g @apeinspire/devcontext-mcpConfigure (Claude Code)
Add to your MCP config:
{
"mcpServers": {
"devcontext": {
"command": "npx",
"args": ["-y", "@apeinspire/devcontext-mcp"]
}
}
}Or if installed globally:
{
"mcpServers": {
"devcontext": {
"command": "devcontext-mcp"
}
}
}Dev
npm install
npm run build
npm testTest with MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js