Ai Code Mentor Server

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

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:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

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
Available Tools
explain_error

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.

fix_code

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_code

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_docs

Generate professional documentation (description, parameters, return value, example, notes) for a function or a whole file of code.

generate_readme

Generate a basic README.md skeleton for a project or file: title, description, installation, usage, and a function overview.

answer_programming_question

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.

summarize_repository

Fetch a public GitHub repository and summarize it: description, stars, primary language, detected tech stack, file tree overview, and a README excerpt.

explain_repository

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.

explain_local_file

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).