nit-mcp-server
Allows reviewing GitHub pull requests, commits, or files using the nit code review agent.
Click on "Deploy 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., "@nit-mcp-serverreview pull request https://github.com/owner/repo/pull/1"
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.
nit-mcp-server
An MCP server that exposes nit's code review agent as tools Claude can call directly, over Streamable HTTP.
Tools
review_local_pathcalls nit-agent'sPOST /reviewwith a local path and streams back the reviewreview_githubcalls nit-agent'sPOST /review/githubwith a PR, commit, or file URL
Related MCP server: local-first-mcp
Setup
Make sure
nit-agentis running (defaulthttp://localhost:8080) and Ollama is upcp .env.example .env.localand adjustNIT_AGENT_URLif nit-agent isn't on the default portnpm installnpm run dev
The MCP endpoint is now live at http://localhost:3000/api/mcp
Connecting Claude to it
Claude.ai (custom connector): Settings, Connectors, Add custom connector, paste http://localhost:3000/api/mcp
Claude Desktop or Claude Code (stdio bridge, since local URLs need a bridge):
{
"mcpServers": {
"nit": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:3000/api/mcp"]
}
}
}Notes
review_local_pathsends an absolute path string, so nit-agent and this server need to run on the same machine, same as nit-cli's local reviewThe GitHub token field is optional and only needed for private repos
This server cannot be deployed
Maintenance
Related MCP Connectors
Exposes FEDLIN's public security scanners as agent-callable tools over Streamable HTTP.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
Host your MCP tool over streamable HTTP in one command.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceExposes file, shell, git, and memory tools from a host Mac to remote Claude clients (e.g., iPhone) via HTTPS and Tailscale, enabling full coding capabilities on the go.-
- FlicenseNot gradedqualityBmaintenanceExposes locally-built AI tools to Claude, enabling article summarization, promo generation, and semantic search over an Obsidian vault.-
- FlicenseNot gradedqualityCmaintenanceThis server exposes local stdio MCP tools as HTTP/SSE endpoints, enabling remote clients like Claude Desktop to call them. It supports single-tool and aggregated modes with authentication, auto-restart, and hot reload.-
- FlicenseNot gradedqualityCmaintenanceExposes local Python tools via a persistent Streamable HTTP endpoint, allowing an OpenAI Agents SDK notebook to discover and invoke them while using Groq for reasoning and tool selection.-