AdmitBase Admissions
Server Details
Admissions data & match scores for law, medical, dental, MBA, pharmacy, vet, optometry schools
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 5 of 5 tools scored.
Each tool has a distinct purpose: searching schools, retrieving specific school stats, calculating match scores, saving user stats, and comparing to community outcomes. No two tools overlap in function, even though search_schools and get_school_stats both return stats, their scopes are clearly different.
All tool names follow a consistent verb_noun pattern in snake_case: calculate_match_score, compare_to_applicants, get_school_stats, save_my_stats, search_schools. The verb clearly indicates the action and the noun the resource, maintaining uniformity throughout.
Five tools is well-scoped for an admissions assistance server, covering search, statistics, calculations, user data, and comparison without excessive fragmentation or overlap. Each tool earns its place in the set.
The core admissions workflow is covered: search, get stats, calculate match, save stats, and compare. However, there is no way to view, update, or delete saved stats via the MCP, and no tool to fetch the user's own profile, leaving minor gaps in user data management.
Available Tools
5 toolscalculate_match_scoreCalculate match scoreAInspect
Given a user's GPA and test score, calculate match category (Safety/Target/Reach/Far Reach), admission probability, and percentiles for one school or a ranked list. Public — no authentication required.
| Name | Required | Description | Default |
|---|---|---|---|
| gpa | No | Cumulative GPA on a 4.0 scale (omit for ATAR-based Australian schools) | |
| atar | No | Australian Tertiary Admission Rank (0-99.95). Used instead of test_score/gpa for Australian schools, which select on a published ATAR cutoff. | |
| limit | No | Number of top schools to return when no school_slug given | |
| program | Yes | Program type | |
| test_score | No | Test score: LSAT 120-180, MCAT 472-528, DAT 1-30, OAT 200-400, GMAT/GRE for MBA. Omit for pharmacy (PCAT retired 2024 — GPA-only) and for ATAR-based Australian schools. | |
| school_slug | No | If provided, calculate for this school only. Otherwise returns a ranked list. | |
| work_experience_years | No | Years of full-time work experience (MBA programs only) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the transparency burden. It discloses the authentication requirement (none) and specifies behavior (returns categories, probability, percentiles; operates for one school or ranked list). It does not state side effects (implicitly none), but the tool's read-only nature is evident from its purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one sentence, front-loaded with the action and outcome, with no superfluous words. It efficiently covers purpose, scope, and auth in under 30 words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, scope, authentication, and outputs, which is sufficient given the schema's rich parameter coverage. A minor gap is that it doesn't explicitly mention how parameters combine (e.g., ATAR vs GPA), but the schema handles this, so the description is adequately complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description mentions "GPA and test score" but does not add new meaning beyond the schema's detailed parameter descriptions (e.g., ATAR vs GPA, program-specific test ranges). It does not clarify ambiguities or add syntax/format guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: "calculate match category (Safety/Target/Reach/Far Reach), admission probability, and percentiles" for "one school or a ranked list." It specifies the verb (calculate), resource (match score), and outputs, distinguishing it from siblings like search_schools or compare_to_applicants.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool (given GPA/test score) and explicitly notes "Public — no authentication required," which signals accessibility. However, it does not explicitly contrast with alternatives (e.g., compare_to_applicants) or mention when not to use it, leaving some implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_to_applicantsCompare against community outcomes (requires Bearer auth)AInspect
Compare a user's saved stats against anonymous community outcome reports (accepted/waitlisted/rejected). Requires Authorization: Bearer amb_... header.
| Name | Required | Description | Default |
|---|---|---|---|
| program | Yes | Program to compare against | |
| school_slug | No | If provided, compare against applicants at this specific school |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds useful behavioral context beyond the name by disclosing the Bearer auth requirement and the anonymous nature of the community reports. However, with no annotations provided, it does not explicitly state whether the operation is read-only or if any modifications occur, nor does it describe behavior on missing saved stats.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long and immediately states the action and a key requirement. It is front-loaded with the action ('Compare') and includes only essential information without waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core purpose and authentication requirement, and the schema handles parameter documentation. However, since there is no output schema, the description would benefit from explaining what the result looks like and any prerequisites (e.g., saved stats must exist).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and both parameters have descriptions in the schema. The tool description does not add additional parameter-level detail beyond what the schema provides, so it meets the baseline but does not exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Compare') and the specific resource ('a user's saved stats against anonymous community outcome reports'). It distinguishes this tool from siblings by focusing on community outcome comparison, while sibling tools like calculate_match_score, get_school_stats, save_my_stats, and search_schools have different scopes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates when to use the tool: when comparing a user's saved stats against anonymous community outcomes. It also includes the auth requirement. However, it does not explicitly mention when not to use it or name alternatives, but the purpose is clear enough to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_school_statsGet detailed school statsAInspect
Get full admissions statistics for a specific school: GPA/test percentiles, acceptance rate, class size, tuition, employment outcomes. Public — no authentication required.
| Name | Required | Description | Default |
|---|---|---|---|
| school_name | No | School name to search for (partial match). Used when slug is unknown. | |
| school_slug | No | School slug (e.g. "harvard-law-school"). Use search_schools to find slugs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It explicitly states 'Public — no authentication required,' addressing a key behavioral trait. It also lists the type of data returned, setting expectations. It doesn't mention error handling or output format, but for a simple read-only getter, this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence: 'Get full admissions statistics for a specific school: ...' It efficiently conveys the verb, resource, and scope without redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with two optional parameters, both thoroughly documented in the schema. The description adds the public-access trait and lists the stats returned, compensating for the lack of an output schema. It doesn't explain which parameter to supply, but the schema covers that, making the overall context complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% description coverage for both parameters, with detailed explanations for school_name and school_slug. The description adds no additional parameter-specific meaning, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's verb ('Get') and resource ('full admissions statistics for a specific school'), and enumerates concrete data fields (GPA/test percentiles, acceptance rate, class size, tuition, employment outcomes). This distinguishes it from sibling tools like search_schools, calculate_match_score, and compare_to_applicants, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description specifies the tool is for a specific school and notes it is public with no authentication required. It does not explicitly mention alternatives or exclusions, but the sibling list and the phrase 'for a specific school' make the use case clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
save_my_statsSave my application stats (requires Bearer auth)AInspect
Save a user's GPA and test score per program under their AdmitBase API key. Requires Authorization: Bearer amb_... header (generate one at https://admitbase.com/profile#api-keys).
| Name | Required | Description | Default |
|---|---|---|---|
| gpa | Yes | Cumulative GPA on a 4.0 scale | |
| notes | No | Any notes about your application profile | |
| program | Yes | Program you are applying to | |
| test_score | Yes | Your test score (LSAT, MCAT, DAT, OAT, GMAT/GRE; pharmacy is GPA-only since the PCAT retired) | |
| state_province | No | Your state or province (2-letter code, e.g. "CA", "NY") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the Bearer auth requirement and where to generate a key, which is important. However, it does not mention whether the save overwrites existing records, what the response looks like, or any other side effects beyond the basic write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the main action, followed by the essential auth instruction. No unnecessary words or repetition. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward write operation with a well-documented schema, the description is sufficiently complete. It explains what is saved, under whose key, and the auth requirement. It lacks explicit output/error behavior, but given the simplicity and no output schema, this is not a critical gap. Overall, an agent can confidently select and invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% parameter description coverage, so the baseline is 3. The description adds context that GPA and test score are the primary values being saved per program, but it does not add format or syntax details beyond what the schema already provides. It does not fully compensate for any gaps because there are none.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action: 'Save a user's GPA and test score per program under their AdmitBase API key.' This distinguishes it from the sibling read/analysis tools (calculate_match_score, compare_to_applicants, get_school_stats, search_schools) which are all query-oriented.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: it is the save/write operation for application stats, with an explicit auth prerequisite. However, it does not explicitly compare to alternatives or state when not to use it. The purpose is strong enough that an agent can infer when to use it, but explicit exclusions are missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_schoolsSearch professional schoolsAInspect
Search professional schools (law, medical, dental, MBA, pharmacy, veterinary, optometry) by program type, name, or ranking range. Returns admissions stats and AdmitBase links. Public — no authentication required.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (default 20, max 50) | |
| query | No | School name search (partial match) | |
| program | Yes | Type of professional school program | |
| max_ranking | No | Only return schools ranked below this number | |
| min_ranking | No | Only return schools ranked at or above this number |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It discloses that the tool is public (no auth required) and that it returns admissions stats and AdmitBase links, which is useful behavioral context. However, it doesn't mention any rate limits, pagination behavior, or whether results are sorted, but for a simple search tool this is reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with the main action front-loaded. The first sentence specifies the search criteria, the second describes the return value and public access. Every word is useful, no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description adequately explains the purpose, parameters (via context), and return type. It doesn't explain every edge case like result sorting or exact output structure, but for a search tool that returns stats and links, it's sufficiently complete. Minor gap: no mention of default limit or possible result formats, but the schema handles limit defaults.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with each parameter having a description. The description adds a general mapping by mentioning 'by program type, name, or ranking range' which correlates with program, query, and ranking parameters, but it doesn't provide additional semantics beyond what the schema already says. This aligns with the baseline of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Search' and the resource 'professional schools' with specific filters (program type, name, ranking range), distinguishing it from sibling tools like get_school_stats by focusing on search/filter behavior and return of admissions stats and AdmitBase links.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context: you use this when you need to find schools by program, name, or ranking. It doesn't explicitly exclude alternatives, but the sibling tools have obviously different purposes (e.g., calculate_match_score, compare_to_applicants), making the context clear. No explicit when-not-to-use is given, so not a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseAqualityBmaintenanceSearches US colleges and scholarships using government data, enabling comparisons of tuition, debt, earnings, and program-specific outcomes.4
- Alicense-qualityAmaintenanceSearch, compare, and analyze U.S. college data — costs, earnings, programs, and outcomes — via MCP.1151Apache 2.0
- Alicense-qualityDmaintenanceQuery 13,000+ US consumer lenders with eligibility criteria, rates, CFPB complaints, and ratings. Find matching lenders by borrower profile, get full profiles, compare lenders, and check eligibility.MIT
- AlicenseBqualityCmaintenanceProvides comprehensive access to CMS Medicare data including physician services, prescriber information, hospital quality metrics, drug spending, formulary coverage, and ASP pricing for healthcare analysis and decision-making.16MIT