MCP Server Codebase Analyzer
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server Codebase Analyzeranalyze my codebase for health issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server Codebase Analyzer
A production-grade MCP (Model Context Protocol) server that analyzes TypeScript codebases, detects code health issues, fetches system incidents, and generates actionable remediation plans. Supports dual transport (STDIO for local dev, SSE for cloud deployment). Built with ts-morph, Express, and Zod validation.
🚀 Features
Three Core Tools:
analyze_codebase_health— Scans TypeScript repositories for:Large files (potential refactoring candidates)
Missing explicit function types (weak typing)
Circular dependencies (architectural issues)
Uses
ts-morphfor AST-level analysis
fetch_system_incidents— Returns structured incident data:Mock incident data (perfect for testing/demos)
Configurable delays and failure modes
LLM-friendly JSON responses
generate_remediation_plan— Creates actionable fix plans:Root cause analysis from stack traces
Step-by-step remediation steps
Code suggestions and best practices
Risk level assessment
All tools return structured success/error envelopes designed for LLM consumption.
Architecture Overview
flowchart LR
Client[McpClient] --> Runtime[RuntimeSelector]
Runtime -->|stdio| Stdio[StdioTransportAdapter]
Runtime -->|sse| Sse[SseTransportAdapter]
Stdio --> Server[McpServer]
Sse --> Server
Server --> Registry[ToolRegistry]
Registry --> ToolA[analyze_codebase_health]
Registry --> ToolB[fetch_system_incidents]
Registry --> ToolC[generate_remediation_plan]Local Run (STDIO)
Install dependencies:
npm install
Start server:
npm run dev:stdio
The server starts over stdin/stdout and is ready for local MCP clients.
Run with SSE (Express)
Set environment:
TRANSPORT=sseoptional:
AUTH_TOKEN=your-secret-token
Start server:
npm run dev:sse
Endpoints:
GET /eventsfor SSE streamPOST /messages?sessionId=...for MCP JSON-RPC messages
Connect From Cursor
For local usage, register Nexus-Core as a stdio MCP server:
command:
nodeargs:
dist/index.js(after build) ortsx src/index.ts(dev)env:
TRANSPORT=stdio
For hosted usage, configure your MCP client to use the SSE endpoint:
stream URL:
https://<host>/eventsmessage URL:
https://<host>/messages?sessionId=<session-id>add
Authorization: Bearer <AUTH_TOKEN>if token auth is enabled.
Example Prompts
"Analyze my repo"
"Fetch incidents"
"Fix this error"
Environment Variables
See .env.example for all supported settings. Important controls:
TRANSPORT:stdioorsseTOOL_TIMEOUT_MS: hard timeout for each tool callTS_MORPH_MAX_FILES,TS_MORPH_MAX_DEPTH: analysis guardrailsINCIDENT_API_TIMEOUT_MS,INCIDENT_API_RETRIES: external dependency controlsSSE_HEARTBEAT_MS,SSE_SESSION_TTL_MS: SSE session lifecycle
Production Deployment
Docker
Build image:
docker build -t nexus-core .Run container:
docker run -e TRANSPORT=sse -e PORT=8080 -p 8080:8080 nexus-core
Cloud Run
Use deploy.sh:
PROJECT_ID=<gcp-project> REGION=<region> SERVICE=nexus-core ./deploy.shThis script:
Builds container image
Pushes to GCR
Deploys to Cloud Run
Reliability and Error Model
All tool requests are validated with Zod.
No tool execution returns unhandled exceptions.
Errors use a standard envelope with:
codemessageretryablesuggestedActionmeta(requestId,toolName, timing)
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kushalsai-01/mcp-server-codebase-analyser'
If you have feedback or need assistance with the MCP directory API, please join our Discord server