fairsession
Server Details
Live healthcare pay data: advertised ranges by role/state/city, offer checks, transparency scores.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscheck_offerAInspect
Where a specific job offer sits against advertised pay for a role in a state: percentile vs live posting ranges, with an honest fallback to national data when the state sample is under 25 disclosed postings. Advertised ranges are not settled offers.
| Name | Required | Description | Default |
|---|---|---|---|
| role | Yes | Role, e.g. 'RN', 'BCBA' | |
| basis | Yes | Pay basis of the offer | |
| state | Yes | Two-letter US state code | |
| amount | Yes | Offer amount, e.g. 42.5 (hourly) or 78000 (annual) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the fallback to national data when the state sample has fewer than 25 disclosed postings and warns that advertised ranges are not settled offers. This adds meaningful behavioral and data-limitation context beyond the schema. It stops short of describing the exact response format, but the core behavior is 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 a single dense sentence that front-loads the main comparison and then adds the fallback rule and caveat. There is no fluff, though the phrasing 'where a specific job offer sits' is slightly indirect.
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 annotations and no output schema, the description provides substantial context: comparison logic, percentile basis, fallback threshold, and a data-quality caveat. It could mention return value shape or explicitly route to get_pay_range for raw ranges, but an agent has enough to invoke the tool correctly.
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 input schema already provides full descriptions for all four parameters, including amount examples, so schema coverage is complete. The description reinforces the role/state/amount relationship but does not add parameter-level semantics beyond what the schema already conveys.
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 operation: compare a specific job offer to advertised pay and report its percentile. It names the resource (job offer vs live posting ranges) and role/state scope, which distinguishes it from list_employers. It does not explicitly differentiate from get_pay_range, but the core purpose is unambiguous.
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 use case is implied: call this when you have a specific offer amount and want to position it against market postings for the same role and state. The description gives no explicit when-not-to-use guidance and does not mention alternatives such as get_pay_range for raw range lookups.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_employer_scoreAInspect
An employer's Pay Transparency Score: the percentage of its active postings that state pay, computed weekly from its own public career board. Includes posting counts and advertised ranges by role. Scores cannot be bought.
| Name | Required | Description | Default |
|---|---|---|---|
| employer | Yes | Employer name, e.g. 'Mount Sinai' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the metric formula, the weekly computation cadence, the data source, and the included output details such as posting counts and ranges by role. It also adds a trust-related guarantee that scores cannot be bought, which is more transparency than expected.
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 compact and well structured: the first sentence defines the core metric, the second lists what is included, and the third offers a meaningful guarantee. Every sentence contributes non-redundant information and the main definition is front-loaded.
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 simple one-parameter read-only tool with no output schema, the description is largely complete: it states the metric, source, update frequency, and return contents. An agent can correctly select and invoke the tool using only the employer name from the schema. Minor details such as not-found behavior are not specified, but this does not seriously impair usability.
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 single parameter, employer, is fully documented in the schema with a description and example, giving 100% schema description coverage. The tool description adds no significant parameter-level detail beyond tying the score to an employer, which is adequate under the baseline rule.
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 identifies the resource and computation: an employer's Pay Transparency Score defined as the percentage of active postings that state pay, sourced from the employer's own public career board. It also distinguishes itself from sibling tools like get_pay_range and check_offer by focusing on an employer-level score rather than individual offers or ranges.
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 explains what the tool provides and how the score is computed, so an agent can infer when it is relevant. However, it never explicitly states when to prefer this tool over siblings or when not to use it. No alternatives or exclusion conditions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pay_rangeAInspect
Advertised pay range for a healthcare role in a US state, computed weekly from employers' own live job postings (never surveys). Returns hourly and salary ranges separately, sample sizes, city-level ranges where available, and honest labels when data is thin.
| Name | Required | Description | Default |
|---|---|---|---|
| role | Yes | Role, e.g. 'RN', 'BCBA', 'physical therapist', 'financial analyst' | |
| state | Yes | Two-letter US state code, e.g. NY |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it does well by disclosing the data source (live job postings), freshness (computed weekly), a negative constraint (never surveys), and what it returns. It also mentions honest labels for thin data, though it does not fully specify what those labels look like.
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 dense sentence with no filler. It front-loads the core purpose, then packs in the key behavioral details and return-value caveats without wasting 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?
Given only two simple parameters, full schema coverage, and no output schema, the description is largely complete: it explains what is returned, how the data is computed, and how thin data is handled. A slightly more explicit note about the format of the returned ranges would make it fully 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 parameters role and state are already well documented. The description adds useful context like 'healthcare role' and two-letter state codes, but it does not materially extend the schema's parameter explanations.
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 states a specific action and resource: retrieving an advertised pay range for a healthcare role in a US state. It also differentiates the tool from siblings like check_offer and get_employer_score by focusing on market-wide pay ranges rather than individual offers or employer scoring.
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 for when to use this tool: whenever an agent needs current advertised pay ranges for a healthcare role in a state. It does not explicitly state when not to use it or name alternative tools, but the intended use case is unmistakable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_employersBInspect
All employers Fair Session currently tracks and scores, with Transparency Scores, plus the identified-but-not-yet-ingested pipeline.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It adds useful context by distinguishing tracked/scored employers from the not-yet-ingested pipeline, which is more than a bare list would provide. However, it omits details like pagination, ordering, result size limits, or whether pipeline entries include scores.
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 sentence that front-loads the main resource ('All employers') and then adds necessary scope qualifiers. Every phrase earns its place, with no repetition 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?
For a simple no-parameter list tool, the description covers the main output categories: tracked employers with Transparency Scores and the pipeline. However, since there is no output schema, details about returned fields, pagination, or how pipeline entries are represented are left unspecified.
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 tool has zero parameters, so there is nothing for the description to clarify beyond what the empty schema shows. The baseline of 4 applies because parameter semantics are not a concern.
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 identifies the resource (employers tracked by Fair Session) and the scope: all tracked/scored employers plus the pipeline of identified-but-not-yet-ingested ones. It does not explicitly state the action verb 'list,' but the tool name and phrasing 'All employers...' make the purpose evident.
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 gives context but no guidance on when to choose this tool over siblings like get_employer_score or check_offer. It does not state what this tool is not for or when a more specific tool should be used.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
check_offer - First observed
get_employer_score - First observed
get_pay_range - First observed
list_employers
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
H1B visa salary disclosures + compensation benchmarks — real numbers, not estimates.
Pay-per-call US healthcare data: hospital financials, prices, quality, exclusions, wages.
CMS quality ratings, payer-negotiated prices, and clinician data for 41K+ US healthcare facilities.
Search US hospital prices, compare costs, and find insurance-negotiated rates.
Related MCP Servers
AlicenseAqualityBmaintenanceProvides live US healthcare cost data including procedure cost estimates, provider pricing, insurance coverage rules, and medical bill analysis using real hospital transparency and CMS data.1262MIT- AlicenseNot gradedqualityCmaintenanceUS + EU salary benchmarking, pay transparency compliance, and semantic endpoints. 1,400+ US occupations, 28 EU countries. MCP server for AI agents.MIT
- AlicenseAqualityAmaintenanceLive tech-hiring intelligence for AI agents. Search 130K+ open jobs collected daily from ~500 tech companies' own career sites â plus company hiring profiles, tech stacks, salary benchmarks, and skill trends. Five tools work with no account.31168MIT
- AlicenseAqualityBmaintenanceEnables querying open job postings directly from company applicant-tracking systems (Greenhouse, Ashby, Lever), finding a company's job board, listing and comparing roles, and accessing salary data, all without scraping or API keys.3MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct operation: comparing an offer, retrieving a pay range, getting an employer score, and listing employers. There is mild overlap between check_offer and get_pay_range, but their purposes are clearly separated by whether a specific offer is being evaluated.
All tool names follow the same verb_noun pattern: check_offer, get_employer_score, get_pay_range, list_employers. The naming is predictable and makes the action and target of each tool immediately clear.
Four tools is a well-scoped count for this focused domain. Each tool covers a meaningful interaction with the pay transparency dataset without redundancy or unnecessary surface area.
The set covers the core workflows: viewing pay ranges, checking an offer, seeing an employer's transparency score, and browsing tracked employers. Minor gaps exist, such as no dedicated employer detail view or filtering/searching, but agents can accomplish the main jobs without dead ends.