Education
Data source: Hipolabs Universities API
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/university/
claude_desktop_config.json
{
"mcpServers": {
"gnist-university": {
"url": "https://context.gnist.ai/mcp/university/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/university/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "report_feedback", "arguments": {"feedback": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/university/
2 endpoints available:
GET /rest/university/search_universitiesGET /rest/university/report_feedback
Shell
curl "https://context.gnist.ai/rest/university/report_feedback?feedback=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/university/report_feedback",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"feedback": "example"
},
)
print(resp.json())
Command Line
Command
gc university
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (2)
search_universitiesSearch universities worldwide by name and/or country.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | any | optional | Partial university name to search for (e.g. 'MIT', 'Oxford', 'technol'). Optional. |
country | any | optional | Country name to filter by (e.g. 'United States', 'Norway', 'Germany'). Optional. |
limit | integer | optional | Maximum number of results to return (1-100, default 20). (default: 20) |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |