universities-and-colleges

universities-and-colleges

3.5

The Universities and Colleges MCP server provides tools to access information about universities and colleges globally, with a focus on US institutions.

The Universities and Colleges MCP server offers a range of subscription plans to access detailed data on educational institutions worldwide. It is designed to deliver high-quality service with efficient response times and robust data. Users can choose from various subscription tiers, from basic to mega, to suit their needs. The server provides comprehensive information on universities and colleges, especially those in the United States, including detailed insights such as school colors, type, nickname, mascot, address, and more.

Features

  • Global University and College Information: Access a vast array of data on universities and colleges worldwide.
  • Detailed US-based College Insights: Retrieve detailed information for US institutions, including school colors, type, nickname, mascot, address, city, state, state code, zip, and website.
  • Flexible Subscription Plans: Choose the subscription plan that best fits your needs, from basic to mega.

MCP Tools

  • Universities: Retrieve a list of universities with optional details and filters.
  • University Details by ID: Retrieve a single university by ID with detailed information.

Usage with Different Platforms

python

python
import requests

url = 'https://api.universitiesmcp.com/Universities'
params = {
    'page': 0,
    'includeUniversityDetails': True,
    'countryCode': 'US',
    'limit': 10,
    'search': 'Harvard'
}
response = requests.get(url, params=params)
data = response.json()
print(data)

javascript

javascript
const axios = require('axios');

const url = 'https://api.universitiesmcp.com/Universities';
const params = {
    page: 0,
    includeUniversityDetails: true,
    countryCode: 'US',
    limit: 10,
    search: 'Harvard'
};

axios.get(url, { params })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.error(error);
    });