A powerful MCP server built with NitroStack
Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):
{
"mcpServers": {
// your other mcp servers
"ai-code-mentor-server": {
"url": "https://blinkfix-6a5b12-apex-coders-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
}
}
}
Connect remote tools directly via Claude's Web UI:
Configure custom tools directly via ChatGPT's Web UI:
Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):
{
"mcpServers": {
// your other mcp servers
"ai-code-mentor-server": {
"serverUrl": "https://blinkfix-6a5b12-apex-coders-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
}
}
}
Add the following configuration block to your Codex configuration file (~/.codex/config.toml):
[mcp_servers.ai-code-mentor-server] url = "https://blinkfix-6a5b12-apex-coders-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp"
Connect directly using the Server-Sent Events endpoint:
https://blinkfix-6a5b12-apex-coders-amrita-university-amritapuri-campus.app.nitrocloud.ai/mcp
Explain a compiler/runtime error or exception in plain language: what it means, its root cause, why it happened, how to fix it, and the relevant best practice. Never just returns a fix — it teaches.
Attempt to fix broken or buggy code. Applies deterministic, well-understood fixes (bracket balance, Python missing colons, JS assignment-in-condition, var->let) and reports exactly what changed and why. Returns the original and fixed code plus an explanation — never silently rewrites without explaining.
Explain what a piece of code does: a plain-language summary, the functions/variables/classes it defines, its logic, an estimated complexity, and suggestions for improvement.
Generate professional documentation (description, parameters, return value, example, notes) for a function or a whole file of code.
Generate a basic README.md skeleton for a project or file: title, description, installation, usage, and a function overview.
Answer a natural-language programming question (e.g. "What is polymorphism?", "Explain async/await", "Difference between ArrayList and LinkedList?") with a simple, beginner-friendly explanation and example.
Fetch a public GitHub repository and summarize it: description, stars, primary language, detected tech stack, file tree overview, and a README excerpt.
Explain a public GitHub repository in depth: its purpose, architecture (key directories and their likely role), tech stack, and how to get started, based on its README and file structure.
Read a file from the local filesystem (where this MCP server runs) and return its source code along with an explanation: language, summary, functions/variables/classes, complexity, and possible issues (TODOs, leftover debug statements, hardcoded secrets, long lines).