GnistAI GnistAI
Log in

University Directory

Search universities worldwide by name and country — domains, web pages, and location.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 2 tools tools 2 2 Education

Data source: Hipolabs Universities API

MCP 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"}}}'

API REST API

API Root https://context.gnist.ai/rest/university/

2 endpoints available:

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc university

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (2)

search_universities
Search universities worldwide by name and/or country.
ParameterTypeRequiredDescription
nameanyoptionalPartial university name to search for (e.g. 'MIT', 'Oxford', 'technol'). Optional.
countryanyoptionalCountry name to filter by (e.g. 'United States', 'Norway', 'Germany'). Optional.
limitintegeroptionalMaximum number of results to return (1-100, default 20). (default: 20)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related