CarePlanKit — Nursing Care Plans
Server Details
Nursing care plans for students: diagnoses, SMART goals, interventions with rationale, sources.
- 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/5 across 2 of 2 tools scored.
The two tools are clearly distinct: one retrieves a care plan for a specific condition, the other lists all available conditions. There is no overlap or ambiguity in their purposes.
Both tools follow the same verb_noun pattern: 'get_nursing_care_plan' and 'list_nursing_conditions'. The naming is consistent and predictable.
With only two tools, the server feels minimal but is focused on a narrow educational niche. The count is borderline, but it adequately serves its stated purpose of retrieving and browsing care plans.
The core workflow of listing available conditions and retrieving their care plans is fully covered. A minor gap is the lack of search or filtering, but agents can work around this by listing all conditions.
Available Tools
3 toolsget_nursing_care_planNursing care plan for a conditionARead-onlyIdempotentInspect
Get a full nursing care plan for a specific condition: assessment findings (subjective and objective), priority NANDA-style nursing diagnoses with the "as evidenced by" evidence, SMART goals, interventions each with a rationale, evaluation criteria, and clinical sources (MedlinePlus, NCBI, NIH). Written for nursing students preparing care plans. Use when a nursing student asks for a care plan, nursing diagnoses, interventions, goals or AEB statements for any condition, for example sepsis, CHF, COPD, diabetes, pneumonia or MI. Educational reference, not medical advice.
| Name | Required | Description | Default |
|---|---|---|---|
| condition | Yes | Condition name or common abbreviation, e.g. "sepsis", "CHF", "COPD", "MI" |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond the readOnlyHint/idempotentHint annotations by clarifying the output contents and stating it is 'Educational reference, not medical advice'. This discloses limitations and purpose, which is valuable for an AI agent. There is 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but well-structured, front-loading the main verb 'Get a full nursing care plan' and then listing details and usage context. Each sentence contributes meaningful information, though the example conditions are somewhat redundant with the schema.
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 tool with one parameter and no output schema, the description is comprehensive: it details all expected return sections, target audience, and use cases. The educational disclaimer also addresses potential misuse. This fully equips an agent to decide when and how to invoke the tool.
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 fully documents the single 'condition' parameter with examples, and the description repeats those examples ('sepsis, CHF, COPD, diabetes, pneumonia or MI') without adding new semantics such as formatting or constraints. Given the schema coverage is 100%, a baseline 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 retrieves a 'full nursing care plan for a specific condition' and enumerates contents (assessment, diagnoses, goals, interventions, rationales, evaluation, sources). This distinguishes it from siblings like get_nursing_diagnosis, which focuses on a single diagnosis, and list_nursing_conditions, which likely lists conditions.
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 explicitly says 'Use when a nursing student asks for a care plan, nursing diagnoses, interventions, goals or AEB statements for any condition', providing clear context for when to select this tool. However, it does not explicitly mention alternatives or when not to use it, especially relative to the sibling tool get_nursing_diagnosis, so it lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_nursing_diagnosisCare plan material for one nursing diagnosisARead-onlyIdempotentInspect
Get care plan material for a specific NANDA-style nursing diagnosis: its definition, related factors (the "related to" clause), defining characteristics (the "as evidenced by" clause), SMART goals, interventions, and the conditions where it is a priority. Use when a nursing student asks about a diagnosis rather than a disease, for example "risk for infection", "acute pain", "impaired gas exchange", "ineffective coping" or "risk for falls", or asks how to write a three-part diagnosis or an AEB statement. Educational reference, not medical advice.
| Name | Required | Description | Default |
|---|---|---|---|
| diagnosis | Yes | Nursing diagnosis, e.g. "Risk for Infection", "Acute Pain", "Impaired Gas Exchange" |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds context beyond those: it specifies exactly what content is returned and clarifies the tool is an educational reference, not medical advice. No contradictions 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: it states the main purpose first, then lists content, then provides usage examples and disclaimer. Two sentences carry all necessary information without redundancy.
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?
Despite no output schema, the description fully explains what will be returned. With one parameter, complete usage guidance, and clear behavioral context, the description is comprehensive for an AI agent to select and 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 schema has 100% coverage for the single 'diagnosis' parameter. The description enriches this by giving concrete examples (e.g., 'Risk for Infection', 'Acute Pain') and clarifying that it expects NANDA-style diagnoses, which is valuable 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?
The description clearly states the tool retrieves care plan material for a specific NANDA-style nursing diagnosis, listing concrete components (definition, related factors, defining characteristics, goals, interventions, conditions). It distinguishes itself by focusing on diagnosis-specific material rather than a full care plan or disease information.
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 explicit usage guidance: 'Use when a nursing student asks about a diagnosis rather than a disease' and includes examples like 'risk for infection', 'acute pain'. It also provides a when-not ('rather than a disease') and a disclaimer ('Educational reference, not medical advice'), but does not explicitly name an alternative sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_nursing_conditionsList covered conditions and diagnosesARead-onlyIdempotentInspect
List every condition with an available nursing care plan and every nursing diagnosis covered. Use when a nursing student asks what is covered or wants to browse before choosing.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey readOnlyHint and idempotentHint. The description adds minimal nuance by noting it lists both conditions and diagnoses, but does not add deeper behavioral context such as return format or ordering. It does not contradict annotations.
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: the first states what the tool does, the second gives usage guidance. No wasted words, information 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, parameterless listing tool with read-only annotations, the description provides adequate purpose and usage context. It could specify returned fields or ordering, but that is not essential for such a straightforward tool.
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 the schema fully covers parameter semantics. Per guideline, a baseline of 4 is appropriate when no parameters exist.
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 lists every condition with an available nursing care plan and every nursing diagnosis covered. This is a specific verb+resource+scope that distinguishes it from sibling tools that retrieve individual care plans or diagnoses.
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 explicitly says 'Use when a nursing student asks what is covered or wants to browse before choosing,' providing clear context and implying the alternative of using get_nursing_care_plan/get_nursing_diagnosis for specific lookups.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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
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
- FlicenseAqualityDmaintenanceProvides tools for managing student knowledge graphs, enabling structured representation of courses, assignments, exams, concepts, and study resources.61
- FlicenseAqualityBmaintenanceGenerates multi-day CKD meal plans for children based on PRNT targets (energy, protein, potassium, phosphorus, sodium), providing nutrient summaries and target achievement rates for dietitians.2
- FlicenseNot gradedqualityBmaintenanceProvides simulated tools for querying student profiles, filtering attention lists, writing follow-up records, and generating class dashboards, enabling data-driven student management.
- AlicenseNot gradedqualityBmaintenanceDeterministic rule-based medical triage with citations, using a 0.6B LLM only to check criteria (yes/no/unknown).Apache 2.0