cancer-support-hub
Server Details
Search 585+ free cancer support resources across Washington State in 7 languages
- 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/5 across 4 of 4 tools scored.
Each tool serves a distinct purpose: fetching details, listing categories, listing counties, and searching resources. There is no overlap or ambiguity among them, making it clear which tool to use for each step.
All tools follow a consistent verb_noun pattern with lowercase and underscores (get_resource, list_categories, list_counties, search_resources). The naming is predictable and uniform.
With only 4 tools, the server is well-scoped for a resource directory. Each tool is essential and earns its place, providing a complete yet minimal interface.
The tool set covers the full user workflow: discover categories, find county names, search with filters, and retrieve full details. There are no obvious gaps for the stated purpose of finding cancer support resources.
Available Tools
4 toolsget_resourceAInspect
Get full details for a single cancer support resource by ID, including locations, hours, and match criteria.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Resource ID | |
| language | No | Language for returned text. Default: en |
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 indicates a read-only operation via 'Get' and states what is returned, but does not explicitly mention read-only nature, auth requirements, or error behavior.
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?
One sentence, front-loaded, no fluff.
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 the simple 2-parameter tool and full schema coverage, the description provides adequate context about the return content. It does not describe error handling or output structure, but that is not required given the absence of an output schema.
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 covers both parameters with clear descriptions (id and language with enum and default). The description reinforces the id usage with 'by ID' but adds no additional semantic information beyond the schema.
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?
Clearly states it retrieves full details for a single resource by ID, listing locations, hours, and match criteria. The verb 'Get' and resource scope distinguish it from siblings like search_resources.
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?
Description implies the tool is for fetching a specific resource when the ID is known. It gives clear context but does not explicitly mention alternatives or exclusions, such as using search_resources for finding resources.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesAInspect
List all 11 support categories with names, descriptions, and resource counts. Use this to understand what types of resources are available before searching.
| Name | Required | Description | Default |
|---|---|---|---|
| language | No | Language for category names. Default: en |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses the exact count ('all 11'), the content (names, descriptions, resource counts), and its listing nature, making the tool's behavior predictable without stating an explicit read-only hint.
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, front-loaded with the action and result, and includes a purposeful usage note. Every sentence contributes without redundancy or verbosity.
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 list tool with one optional parameter and no output schema, the description provides all necessary context: what it lists, the fixed set size, and when to use it. The sibling tool names reinforce its role without requiring additional detail.
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 fully documents the 'language' parameter with an enum and default value, achieving 100% coverage. The description adds no additional semantic detail about the parameter, so the 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 'List all 11 support categories with names, descriptions, and resource counts,' using a specific verb and resource. It distinguishes itself from siblings like list_counties and search_resources by focusing on categories.
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 advises 'Use this to understand what types of resources are available before searching,' providing clear context for when to invoke the tool. It implies a precursor step to searching but does not explicitly name alternatives or when-not-to-use scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_countiesAInspect
List all 39 Washington State counties. Use this to find the correct county name for filtering search results.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must stand alone. It adds the fact that there are exactly 39 counties and that the purpose is to find names for filtering, but it does not disclose return format, ordering, or any edge cases. Given the simplicity, the information is adequate but not extensive.
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 exactly two sentences, front-loads the core capability ('List all 39 Washington State counties'), and the second sentence adds useful context. There is no wasted verbiage.
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 trivial parameterless list tool, the description covers the core purpose and the primary use case. It doesn't specify the exact response format, but given the simplicity and the sibling search_resources tool, the intent is clear. A score of 4 reflects it's complete for its complexity.
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, and the input schema is an empty object. The description does not need to explain any parameters, and the baseline for zero-parameter tools is 4. No irrelevant parameter information is included.
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 explicitly states 'List all 39 Washington State counties' with a specific verb and resource, and the count adds specificity. It clearly distinguishes itself from sibling tools by focusing on enumeration of counties rather than getting or searching resources.
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 second sentence 'Use this to find the correct county name for filtering search results' provides a clear use case and implies when to choose this tool over alternatives. It does not explicitly mention when not to use it or name alternative tools, so it falls just short of the highest standard.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_resourcesAInspect
Search cancer support resources in Washington State. Filter by category (housing, food, mental-health, financial, legal, care, transport, children, rights, programs, education), county, tier, or free-text query. Returns matching resources with name, description, phone, URL, eligibility, and cost.
| Name | Required | Description | Default |
|---|---|---|---|
| tier | No | cancer = cancer-specific programs, community = general programs that serve cancer patients | |
| limit | No | Max results (1-50). Default: 10 | |
| query | No | Free-text search across name, description, tags, keywords | |
| county | No | Washington State county name (e.g., King, Spokane, Pierce) | |
| category | No | Filter by support category | |
| language | No | Language for returned text. Default: en |
Tool Definition Quality
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 adds value by listing the return fields (name, description, phone, URL, eligibility, cost) and confirms a search (read) operation. However, it does not disclose any side effects, pagination behavior, default limits, or authorization requirements. It is adequate but not rich in behavioral context.
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 at two sentences and the primary purpose is front-loaded. The category list is somewhat redundant with the schema enum but is useful for quick comprehension. It does not waste words on obvious details, making it concise and well-structured.
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 the tool has 6 optional parameters and no output schema or annotations, the description covers the core purpose, filter options, and return fields. However, it lacks guidance on how filters combine, default limits, language behavior, or relationships with sibling tools. The description is sufficient for basic understanding but leaves room for ambiguity in more complex use cases.
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% for all 6 parameters, so the schema already documents each parameter. The description adds marginal value by listing categories and mentioning free-text query, but these largely duplicate the schema. No additional meaning beyond the schema is provided, so the 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 function: 'Search cancer support resources in Washington State.' The verb 'search' combined with the resource type and geographic scope gives a specific purpose. It distinguishes from sibling tools like get_resource, which presumably fetches a single resource, and list_categories/list_counties, which are lookup tools.
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 for finding resources via filters (category, county, tier, free-text query) but does not explicitly explain when to use this tool versus alternatives like get_resource. There is no mention of exclusions or alternative tools for single-resource retrieval, so usage 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.
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
- Flicense-qualityBmaintenanceConnects users to mental health counseling centers and welfare programs based on location and situation, prioritizing crisis resources.1
- AlicenseAqualityBmaintenanceSearch 12,338 curated, SAMHSA-sourced addiction treatment facilities across all 50 US states.4MIT
- Flicense-qualityBmaintenanceProvides emergency hotline numbers, restrooms and outdoor safety bells, after-hours clinics, pharmacies, ER beds, and foreign visitor phrase cards. Information only—does not place calls or diagnose.1
- AlicenseAqualityAmaintenanceAI-powered medical document management for cancer patients and caregivers. Connects Google Drive, Gmail, and Calendar to Claude, ChatGPT, and any MCP client.795MIT