Slate MCP Server
An MCP (Model Context Protocol) server that connects Technolutions Slate with Claude, enabling you to query and analyze student enrollment demographics data through natural language.
Features
Enrollment Demographics: Get comprehensive demographic summaries for incoming classes
Diversity Metrics: Calculate diversity indices, URM percentages, and geographic diversity
Enrollment Funnel: Track conversion rates from prospect to enrolled
Year-over-Year Comparisons: Analyze trends across multiple enrollment years
Flexible Queries: Search and filter students by various criteria
Prerequisites
Node.js 18.0.0 or higher
Access to a Technolutions Slate instance with API credentials
Slate queries configured for enrollment data (see Slate Configuration)
Installation
Configuration
Environment Variables
Copy .env.example to .env and configure your Slate credentials:
Required environment variables:
Variable | Description |
| Your Slate instance URL (e.g.,
) |
| Slate API username |
| Slate API password |
| (Optional) API key if your instance uses key-based auth |
Claude Desktop Configuration
Add the server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Slate Configuration
This MCP server expects certain queries to be configured in your Slate instance. Work with your Slate administrator to create these queries:
Required Queries
enrollment_demographics: Returns enrolled student data with demographicsRequired fields:
id,first_name,last_name,email,gender,ethnicity,race,citizenship,first_generation,state,country,intended_major,entry_year,entry_term,enrollment_status
enrollment_funnel: Returns funnel countsRequired fields:
prospects,inquiries,applicants,admitted,deposited,enrolled
students_by_status: Returns students filtered by application statusRequired fields: Same as
enrollment_demographics
Query Parameters
The server will pass these parameters to your queries:
entry_year: The enrollment year (e.g., 2024)entry_term: The enrollment term (e.g., "Fall")application_status: For status-based queries
Available Tools
get_enrollment_demographics
Get a comprehensive demographics summary for enrolled students.
Parameters:
entry_year(required): The entry year (e.g., 2024)entry_term(optional): The entry term (default: "Fall")
Example prompt: "Show me the demographics for Fall 2024 incoming class"
get_diversity_metrics
Get detailed diversity metrics including diversity index and URM percentages.
Parameters:
entry_year(required): The entry yearentry_term(optional): The entry term
Example prompt: "What are the diversity metrics for our 2024 freshman class?"
get_enrollment_funnel
Get enrollment funnel data with conversion rates.
Parameters:
entry_year(required): The entry yearentry_term(optional): The entry term
Example prompt: "Show me the enrollment funnel and yield rates for Fall 2024"
compare_enrollment_years
Compare demographics across multiple years.
Parameters:
years(required): Array of years to compare (e.g., [2022, 2023, 2024])entry_term(optional): The entry term
Example prompt: "Compare enrollment demographics from 2022 to 2024"
get_demographics_report
Generate a formatted, readable demographics report.
Parameters:
entry_year(required): The entry yearentry_term(optional): The entry term
Example prompt: "Generate a demographics report for Fall 2024"
get_demographics_by_category
Get enrollment breakdown by a specific category.
Parameters:
entry_year(required): The entry yearcategory(required): One of:gender,ethnicity,state,country,admit_type,major,college,first_generation,internationalentry_term(optional): The entry term
Example prompt: "Show me enrollment by state for Fall 2024"
search_students
Search for students matching specific criteria.
Parameters:
entry_year(optional): Filter by entry yearentry_term(optional): Filter by entry termstate(optional): Filter by home statecountry(optional): Filter by home countrymajor(optional): Filter by intended majorfirst_generation(optional): Filter by first-gen statusinternational(optional): Filter by international statuslimit(optional): Max results (default: 100)
Example prompt: "Find all first-generation students from California in Fall 2024"
Example Conversations
Getting Annual Demographics Report
Year-over-Year Analysis
Development
Security Considerations
Never commit
.envfiles containing credentialsUse read-only API credentials when possible
The server anonymizes personally identifiable information in search results
Consider implementing rate limiting for production use
License
MIT
Support
For issues with this MCP server, please open a GitHub issue.
For Slate-specific questions, contact Technolutions Support.
This server cannot be installed