Saumyakhushlani/MANIT-ERP-RESULT-MCP
Simple MCP server (stdio transport) that exposes a tool to fetch student result/CGPA data from MANIT ERP APIs.
Platform-specific configuration:
{
"mcpServers": {
"MANIT-ERP-RESULT-MCP": {
"command": "npx",
"args": [
"-y",
"MANIT-ERP-RESULT-MCP"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Simple MCP server (stdio transport) that exposes a tool to fetch student result/CGPA data from MANIT ERP APIs.
get-cgpa-result
username and password
studentid and programid
npm install
node index.js
You should see:
MCP server connected (stdio).
get-cgpa-result
{
"username": "string (required)",
"password": "string (required)",
"studentid": "string (optional)",
"programid": "string (optional)",
"erpApiUrl": "string (optional, default: https://erpapi.manit.ac.in)",
"insecureTls": "boolean (optional)"
}
studentid / programid are not passed, values from login response are used.
insecureTls: true forces insecure TLS mode on first attempt.
Add this server in Claude Desktop MCP config:
{
"mcpServers": {
"manit-erp": {
"command": "node",
"args": ["C:\\Users\\saumya\\mcp\\student-mcp-server\\index.js"]
}
}
}
Then restart Claude Desktop.
Use the MCP tool get-cgpa-result with:
{
"username": "your_erp_username",
"password": "your_erp_password"
}
Loading reviews...