HomeContact +91 90567 55115 (Amritsar) +91 76580 33310 (Jalandhar)
Home/MCP Server
Model Context Protocol · Anthropic spec

Connect MITS Academy to Claude (or any MCP client)

MITS Academy publishes a public MCP (Model Context Protocol) server so AI assistants can fetch the course catalog, fees, placement records, and centre details directly. First edtech in Punjab to do this.

Endpoint
https://mitsacademy.in/api/mcp

JSON-RPC 2.0 over HTTP · Protocol version 2025-06-18 · No auth required (public read-only)

What you get inside Claude

  • Ask Claude "Which MITS course should a BBA graduate take?" — it calls recommend_course and answers grounded in MITS data
  • Ask "What are MITS Academy MERN Stack fees?" — Claude calls get_course for fees + duration
  • Ask "What's MITS Academy's placement record?" — Claude calls get_placements
  • No hallucinations — Claude only quotes verified MITS data

Connect from Claude Desktop

Edit your Claude Desktop MCP config file:

  • · macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • · Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this entry:

json
{
  "mcpServers": {
    "mits-academy": {
      "url": "https://mitsacademy.in/api/mcp"
    }
  }
}

Restart Claude Desktop. The MITS Academy tools will appear in the tools menu.

Connect from Claude.ai (web)

In Claude.ai → Settings → Connectors → Add custom connector → paste the endpoint URL above. Available on paid plans.

Available tools

list_courses

List all 28+ MITS courses with fees and duration. Optional track filter.

get_course

Get detailed info on a specific course by slug or name.

recommend_course

Recommend courses based on user background (BBA, B.Com, Mechanical, BA, women returners, CS student).

get_centres

Get Amritsar + Jalandhar centre addresses, phones, ratings, hours.

get_placements

2,000+ placement record summary with hiring partners and salary ranges.

about

High-level overview, certifications, founding details, trust signals.

search_faqs

Search MITS FAQ database for a specific question.

get_blog_posts

List 191 blog posts by topic cluster — salary, python, digital marketing, cyber security, data analytics, freelancing, women, after 12th, mern.

get_comparison

30 course comparison guides — "X vs Y" with salary data, difficulty, and who-should-pick-which. E.g. "python vs data analytics", "tally vs python", "MBA vs data analytics".

Test it directly

From any shell, list available tools:

bash
curl -X POST https://mitsacademy.in/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Call recommend_course for a BBA graduate:

bash
curl -X POST https://mitsacademy.in/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"recommend_course","arguments":{"background":"BBA","goal":"freelance"}}}'

For ChatGPT users

ChatGPT does not natively support MCP yet (as of mid-2026). For ChatGPT, use the “MITS Academy AI” chat widget on every page of mitsacademy.in — it provides the same data via the chat interface.

Try MITS AI

Open standard, no lock-in

MCP is an open protocol from Anthropic. Spec at modelcontextprotocol.io . Any MCP-compatible client (Claude, Cursor, Windsurf, custom agents) can connect.