Skip to main content
Glama

GeezerKeeper Referral Exit Routes and Deadlines

Server Details

Read-only senior-care exit routes, duplicate-referral deadlines, and templates; no PII or sending.

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation4/5

Most tools have clearly distinct purposes: get_info, get_location, get_services, lookup_deadline, lookup_exit_route, choose_workflow, and template retrieval are all separate concerns. However, get_info and get_services both touch on pricing/options, which could cause slight confusion.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (get_*, lookup_*, choose_*). The verbs are semantically appropriate, and the style is uniform throughout, making the set predictable.

Tool Count5/5

With 7 tools, the set is well-scoped for a niche informational server focused on referral exit routes and deadlines. Each tool covers a distinct aspect, and the count does not feel excessive or sparse.

Completeness4/5

The toolset covers key information retrieval (business info, services, location), lookup of deadlines and exit routes, and workflow selection. A minor gap is the lack of a tool to list all supported networks, which would improve discoverability, but agents can work around this.

Available Tools

7 tools
choose_private_workflowChoose the smallest GeezerKeeper workflowA
Read-onlyIdempotent
Inspect

Choose the free, $19 consumer, or $59 professional option using only recipient count and intended use. No personal information is accepted.

ParametersJSON Schema
NameRequiredDescriptionDefault
recipientCountYesNumber of identifiable organizations to track
professionalUseNoTrue for a practice, firm, or senior living location sharing handouts or tracking referral chronology and deadlines

Output Schema

ParametersJSON Schema
NameRequiredDescription
reasonYes
alternativesYes
dataHandlingYes
nextActionUrlYes
recommendationYes
userFacingSummaryYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows it's a safe read operation. The description adds the behavioral constraint 'No personal information is accepted,' which is valuable beyond the annotations and signals input restrictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One efficient sentence conveying the core function and a key constraint. No redundancy; title and description are both concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple selection tool with two params and an output schema, the description is sufficient. It doesn't spell out return values, but the output schema covers that. Slight gap: doesn't explain what the chosen workflow entails, but not necessary for invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with clear descriptions for recipientCount and professionalUse. The description's phrase 'using only recipient count and intended use' loosely maps to the schema but adds no new details beyond what's already in the parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Choose the free, $19 consumer, or $59 professional option' which identifies the tool's function as selecting a plan/workflow. The title 'Choose the smallest GeezerKeeper workflow' adds specificity. This distinguishes it from sibling tools which are all get/lookup operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for selecting among pricing tiers based on recipientCount and professionalUse, but doesn't explicitly state when to use it versus the sibling lookup tools. No exclusions or alternative recommendations are provided, so guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_infoGet canonical GeezerKeeper business informationA
Read-onlyIdempotent
Inspect

Return canonical public business identity, contact, pricing range, and privacy-boundary information (PUBLICMCP v0.3). Accepts no inputs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
logoYes
nameYes
contactYes
taglineYes
websiteYes
categoryYes
descriptionYes
price_rangeYes
business_typeYes
data_boundaryYes
opening_hoursYes
social_profilesYes
publicmcp_versionYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds context by noting the information is public and canonical, and explicitly mentions 'privacy-boundary information,' indicating what is not included (private data). This goes beyond the structured annotations, enhancing transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence, front-loaded with the action and key details. It includes only necessary information (what is returned, public nature, version tag, no inputs) without any fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (no parameters), rich annotations (read-only, idempotent), and an output schema, the description is fully sufficient. It covers what information is returned and notes the privacy boundary, leaving no critical gaps for an agent to invoke this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and the schema fully captures this (100% coverage). Per the rubric, 0 params earns a baseline of 4. The description repeats 'Accepts no inputs,' which confirms but does not add meaning beyond the schema. This is acceptable and consistent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns canonical public business identity, contact, pricing range, and privacy-boundary information. The verb 'Return' and specific resource categories make the purpose unambiguous. It distinguishes from sibling tools like get_location and get_services by focusing on canonical business-level information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when one needs the listed business information, but it does not explicitly mention alternatives or when not to use it. Sibling tool names provide context, but the description lacks direct guidance on tool selection, so usage is only inferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_locationGet GeezerKeeper delivery coverageA
Read-onlyIdempotent
Inspect

Return online delivery and U.S. service coverage without exposing a private street address or accepting a location input.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
geoYes
officesYes
geo_radiusYes
scope_noteYes
headquartersYes
service_areasYes
remote_capableYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description does not need to restate safety. It adds value by disclosing the privacy behavior ('without exposing a private street address') and the lack of location input, which are not captured in the annotations. This is useful behavioral context beyond the structured metadata.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that conveys purpose, scope, and a key behavioral constraint without any redundant wording. Every phrase earns its place, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters), rich annotations, and presence of an output schema, the description provides sufficient context. It explains what the tool returns and the privacy design, which fully addresses the tool's purpose and limitations for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and the schema is empty, so schema description coverage is 100% by default. Per the baseline for 0 parameters, the description does not need to compensate for missing parameter details, and it correctly confirms that no location input is accepted.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action ('Return online delivery and U.S. service coverage') and specifies the resource and scope. It also distinguishes itself by noting it does not accept a location input or expose a private address, setting it apart from sibling tools that might take location parameters.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: when coverage information is needed without requiring a location input or risking private address disclosure. It does not explicitly name alternatives or exclusions, but the context is clear for a zero-parameter tool that returns coverage data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_servicesGet GeezerKeeper services and current pricesA
Read-onlyIdempotent
Inspect

Return the current free, $19 consumer, and $59 professional self-serve options. The optional category is enumerated and cannot carry personal information.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNoFilter: all, free, consumer, or professionalall

Output Schema

ParametersJSON Schema
NameRequiredDescription
servicesYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint and idempotentHint, and the description adds that the category parameter is enumerated and cannot carry personal information. This is a useful privacy constraint beyond the schema, but the description does not disclose potential rate limits or data freshness details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary function, and contains no unnecessary words or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only service with an output schema and full annotations, the description covers the essential behavior and parameter constraint. No significant gaps are evident.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully documents the category parameter with enum and default. The description adds meaning by linking categories to specific prices ($19 consumer, $59 professional), helping agents understand the significance of each enum value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns the current service tiers and prices, specifically listing free, $19 consumer, and $59 professional options. This clearly distinguishes it from sibling tools like get_info or get_location.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description simply states what it returns without contrasting it with other tools or specifying use cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_unfilled_request_templateGet an unfilled stop-contact request templateA
Read-onlyIdempotent
Inspect

Return an unfilled template for a referral network or an identifiable provider. The server accepts no personal fields and never sends the request. Replace bracketed placeholders locally.

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceIdYesUsed only to return the current source-specific destination and instructions
recipientTypeYesReturn a template for the referral network or for one identified provider

Output Schema

ParametersJSON Schema
NameRequiredDescription
sourceIdYes
templateYes
disclaimerYes
destinationYes
dataBoundaryYes
recipientTypeYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds valuable context beyond the annotations: 'The server accepts no personal fields and never sends the request' clarifies the privacy and non-transmission behavior, and 'Replace bracketed placeholders locally' tells the user what to do with the result. This supplements the readOnly and idempotent hints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, tightly packed with essential information. It is front-loaded with the primary purpose and uses no filler words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, has an output schema, and full parameter coverage. The description covers the core behavior, local handling, and safety guarantees, making it complete for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with both parameters well-documented via enums and descriptions. The tool description does not significantly add meaning beyond the schema, so it stays at the baseline score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with 'Return an unfilled template for a referral network or an identifiable provider,' which clearly states the verb (return), resource (template), and target recipients. This distinguishes it from sibling tools like get_info or get_services.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes it clear that this tool is for obtaining a template that is filled locally, not for sending requests. It implies the intended use case but does not explicitly name alternatives or state when not to use it, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

lookup_duplicate_referral_deadlineLook up a senior-living duplicate-referral deadlineA
Read-onlyIdempotent
Inspect

Return source-maintained public duplicate-referral deadline and reporting-route facts for Caring.com or A Place for Mom, plus the current professional tracking fit. Input is only an enumerated network; never provide lead or prospect information.

ParametersJSON Schema
NameRequiredDescriptionDefault
networkNoFilter: all, caring, or apfmall

Output Schema

ParametersJSON Schema
NameRequiredDescription
policiesYes
disclaimerYes
reviewedAtYes
dataBoundaryYes
professionalFitYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive hints. The description adds meaningful context by specifying that data is 'source-maintained public' and includes a warning about not providing lead/prospect information, going beyond the structured annotations. It does not contradict any annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no wasted words. The first sentence packs the object and scope; the second provides a clear usage constraint. Structure is front-loaded with the main action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter tool with output schema and annotations, the description covers the core purpose, input constraints, and data source. It could be slightly more explicit about when to use vs. siblings, but overall is adequate for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with an enum and description for the single 'network' parameter. The description reinforces the boundary ('only an enumerated network') but adds little beyond the schema's existing documentation. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool returns 'source-maintained public duplicate-referral deadline and reporting-route facts' for Caring.com or A Place for Mom, clearly specifying the verb and resource. It also mentions 'current professional tracking fit', and the title echoes the same. This distinguishes it from siblings like lookup_exit_route.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on what the tool accepts ('Input is only an enumerated network') and an explicit exclusion ('never provide lead or prospect information'). It does not explicitly name alternatives, but the boundary is clear enough for an agent to know when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

lookup_exit_routeLook up a senior-care referral exit routeA
Read-onlyIdempotent
Inspect

Return a maintained stop-contact and privacy route for one supported senior-care referral network. Input is only a network identifier; never provide personal information.

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceIdYesReferral network: apfm, caring, seniorly, or seniorhousingnet

Output Schema

ParametersJSON Schema
NameRequiredDescription
routeYes
guideUrlYes
nextStepYes
disclaimerYes
reviewedAtYes
dataBoundaryYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description need not repeat safety traits. It adds valuable context beyond annotations by noting that the route is 'maintained' (curated, not dynamic) and that personal information should never be provided, which clarifies data handling expectations. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the main purpose, and contains no filler. Every clause earns its place by clarifying the scope ('one supported... network') and the privacy constraint ('never provide personal information').

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter, strong annotations, and an output schema, the description covers the essential aspects: what it returns, its maintained/privacy nature, and the input constraint. It lacks explicit comparison with sibling tools, but that is a minor gap given the low complexity and richness of other structured fields.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema fully documents the single parameter sourceId with an enum and explicit description, so schema coverage is 100%. The description merely restates that input is a network identifier, adding no new semantic detail beyond what the schema already provides. Baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Return' and the specific resource: a 'maintained stop-contact and privacy route' for 'one supported senior-care referral network.' This distinguishes it from sibling tools like get_info, get_location, and get_services by focusing on a unique route object, and the scope ('one... network') is explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used when you need an exit route for a referral network, and it gives an explicit input constraint ('Input is only a network identifier; never provide personal information'). However, it does not mention when to prefer this over sibling tools or provide any exclusions, so usage guidance is only implied rather than fully explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    MCP server that provides read-only business operations tools: list businesses, get status, identify missing inputs, and prepare email drafts/attachment manifests from synthetic evidence, with strict no-send/no-write safeguards.
    Apache 2.0
  • F
    license
    B
    quality
    C
    maintenance
    Provides read-only EspoCRM access for AI assistants, enabling record retrieval and preparation of signed change sets without direct modification or deletion.
    7
  • A
    license
    -
    quality
    D
    maintenance
    Provides guided prayers, semantic search, and pastoral care tools (encouragement, condolence, advice) via a read-only database without authentication.
    MIT
  • F
    license
    B
    quality
    D
    maintenance
    Enables read-only access to FileMaker databases through the Data API, allowing users to retrieve records, analyze metadata, search across layouts, and infer relationships while maintaining data security.
    16

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources