Skip to main content
Glama
MoleCare
by MoleCare

MoleCare MCP Server

npm version npm downloads License Node MCP Contributors

Model Context Protocol (MCP) server that gives Claude and other MCP clients access to:

  1. Dermatology knowledge — ABCDE education, SNOMED CT / ICD-10 helpers, risk-factor prompts

  2. Optional MoleCare API tools — moles, trends, analysis (your backend + API key)

  3. Optional MLOps / ops tools — shipped as a separate binary, molecare-ops-mcp (mock-first)

Not a medical device. Outputs are educational and operational aids only. Do not use for diagnosis or treatment decisions.

Product site: molecare.co.uk · App: iOS · Android


Why this exists

MoleCare helps people track moles over time and prepare for clinician visits. This MCP server lets developers and operators:

  • Query educational skin-health knowledge from Claude Desktop / Cursor

  • Prototype assistant flows against a MoleCare-compatible API

  • Explore MLOps tooling with safe mock data when no credentials are set


Related MCP server: policy-corpus

Quick start

No credentials, no database, no cloud account. Add this to your MCP client config and restart it:

{
  "mcpServers": {
    "molecare": {
      "command": "npx",
      "args": ["-y", "molecare-mcp"]
    }
  }
}

For Claude Desktop on macOS that file is ~/Library/Application Support/Claude/claude_desktop_config.json.

The dermatology knowledge tools work immediately — they read from a knowledge base bundled in the package. Everything that talks to a backend returns clearly-labelled mock data until you configure it, so you can explore the whole tool surface before deciding whether you want any of it.

To try it without a client at all:

npx -y molecare-mcp

It starts and waits on stdio. No output means it is working.


Connecting a real backend

Only needed if you are running a MoleCare-compatible API:

{
  "mcpServers": {
    "molecare": {
      "command": "npx",
      "args": ["-y", "molecare-mcp"],
      "env": {
        "MOLECARE_API_URL": "http://localhost:8080/api",
        "MOLECARE_API_KEY": "your-local-api-key"
      }
    }
  }
}

Use localhost (or your own deployment). Do not paste production keys into config files that sync to cloud drives.


Environment variables

All optional unless you want live backends.

Variable

Purpose

Example

MOLECARE_API_URL

MoleCare HTTP API

http://localhost:8080/api

MOLECARE_API_KEY

API bearer / key

local-dev-key

ONTOLOGY_API_URL

Ontology service

http://localhost:8081

MLFLOW_TRACKING_URI

MLflow

http://localhost:5000

FEAST_REPO_PATH / feature store URL

Feast

AWS_REGION

EC2 / CloudWatch clients

us-east-1

GITHUB_TOKEN

CI/CD tools

MCP_HEALTH_PORT

Bind an HTTP /health endpoint. Unset by default — stdio clients do not need it

3000

PORT

Same, for container health probes

3000

See .env.example.


Tools

Dermatology knowledge — no setup required

These are the reason most people install this. They answer from a bundled knowledge base and need no API, no key, and no network.

Tool

Description

search_medical_info

Search the dermatology knowledge base

lookup_medical_concept

Look up a SNOMED CT concept

search_medical_concepts

Search conditions by name or description

map_snomed_to_icd10

Map a SNOMED CT code to ICD-10

classify_lesion_features

ABCDE-style feature descriptors for a lesion

assess_risk_from_factors

Named educational risk factors (no score)

get_condition_risk_factors

Known risk factors for a condition

get_condition_progression

Typical progression stages for a condition

get_malignant_conditions

Malignant skin conditions with codes

Resources: molecare://knowledge/* — ABCDE criteria, Fitzpatrick skin types, prevention, when to see a dermatologist. molecare://ontology/* — SNOMED CT and ICD-10 reference lists, the full snomed-icd10-map mapping table, and risk factors, all with provenance metadata.

What the terminology actually covers

Bundled

SNOMED CT concepts

7 — melanoma, melanoma in situ, BCC, SCC, actinic keratosis, dysplastic naevus, melanocytic naevus

WHO ICD-10 categories

25 — malignant, in situ, benign, precancerous, inflammatory and pigmentation, across Chapters II and XII

SNOMED → ICD-10 mappings

9 rows covering all 7 concepts — some concepts have more than one plausible target

Every SNOMED concept the server advertises resolves through lookup_medical_concept and maps through map_snomed_to_icd10. Ask for a code outside the subset and the response carries a coverage block listing what is bundled, rather than an empty result. Browse the whole table with the molecare://ontology/snomed-icd10-map resource.

ICD-10 coverage is deliberately broader than SNOMED coverage. Expanding the bundled SNOMED concept set is on hold pending a redistribution question with SNOMED International: free use in a member country is not the same as free redistribution via npm to non-member territories (#49). WHO licenses ICD-10 more permissively at this level, so that side can grow in the meantime.

Terminology provenance

Bundled SNOMED CT / ICD-10 helpers are an educational subset, not a licensed terminology distribution. Named sources live in src/resources/terminology-provenance.ts and are returned on map_snomed_to_icd10 and the ontology resources:

System

What this package reflects

SNOMED CT

International Edition concept IDs / FSNs checked against the SNOMED International browser (last checked 2026-09-03). Plain-English search aliases are written for this package and are not SNOMED descriptions

ICD-10

WHO ICD-10 category-level codes (e.g. C43, D22), with four-character subcategories only where the category alone would mislead (L57.0, D18.0). Not ICD-10-CM — codes such as C4A are deliberately absent

SNOMED → ICD-10

Approximate category-level mappings — not certified one-to-one map rows. Each row carries a rationale

The dataset itself lives in src/resources/terminology-data.ts and is the single source for both the src/api/ontology-client.ts mock paths and the ontology resources. Educational prose without clinical codes lives in src/resources/medical-kb.ts.

MoleCare product data — needs an API

Returns labelled mock data until MOLECARE_API_URL is set.

Tool

Description

get_user_moles

List moles for a user id

get_mole_analysis

Analysis payload for a mole

get_mole_changes

Change history for a mole

get_user_risk_factors

A user's risk profile

compare_moles

Compare two moles

These exist because MoleCare operates this stack from an assistant. They are of little use outside that context, and all of them return mock data unless the matching backend is configured.

They are not part of the molecare-mcp tool list. Loading 39 infrastructure tools that nobody outside MoleCare can use made it measurably harder for a model to pick the right dermatology tool, so they live in their own server:

{
  "mcpServers": {
    "molecare-ops": {
      "command": "npx",
      "args": ["-y", "-p", "molecare-mcp", "molecare-ops-mcp"]
    }
  }
}

Area

Tools

Health

get_system_health, check_server_health, get_service_health, clear_cache

MLflow

get_mlflow_experiments, get_mlflow_runs, get_registered_models, get_model_version, compare_model_runs, get_training_runs

Feature store

get_feature_views, get_feature_view_details, get_feature_freshness, get_online_features, get_feature_store_stats

CI/CD

get_pipeline_runs, get_pipeline_summary, get_deployments, get_deployment_status, get_releases

AWS

get_ec2_instances, get_ec2_instance, get_ec2_health, get_ec2_metrics

Apps

get_app_status, get_web_app_status, get_mobile_api_status, get_all_apps_status, get_app_metrics, get_app_errors, get_app_versions, get_app_store_status

Database

get_database_status, get_database_metrics, get_slow_queries, get_table_stats, get_backup_history, get_connection_pools

Kubernetes

get_kubernetes_status

The AWS tools need @aws-sdk/client-ec2 and @aws-sdk/client-cloudwatch, which are optional peer dependencies — they are not installed by default, because they add 33 MB that nobody wanting the dermatology tools should have to download. Install them yourself if you want live AWS data:

npm i @aws-sdk/client-ec2 @aws-sdk/client-cloudwatch

Architecture

Claude / Cursor / MCP client
        │ stdio (JSON-RPC)
        ▼
  molecare-mcp                    molecare-ops-mcp
   ├─ medical KB (local)           ├─ MLflow / Feast clients
   ├─ MoleCare API client          ├─ AWS / CI / K8s clients
   └─ ontology client              └─ database / app clients
        │    (14 tools)                 │   (39 tools, internal)
        │                               │
        └───────────┬───────────────────┘
                    └─ optional HTTP GET /health  (Docker / ECS)

Docker

docker build -t molecare-mcp .
docker run --rm -p 3000:3000 molecare-mcp
curl http://localhost:3000/health

Security

  • Never commit .env files or API keys — see SECURITY.md to report a vulnerability

  • Prefer mock mode for demos and screenshots

  • Tools that accept userId can return PHI only if you point them at a real backend with real auth — treat that as production

  • Rate-limit and auth belong on your API, not only on the MCP process


Medical disclaimer

MoleCare MCP provides educational information and developer tooling. It does not diagnose melanoma or any disease. Always consult a qualified clinician for medical concerns.


Development

git clone https://github.com/MoleCare/molecare-mcp.git
cd molecare-mcp
npm install
npm run build
npm run dev      # auto-reload
npm run inspect  # browse tools in MCP Inspector

Contributions are welcome. Read CONTRIBUTING.md first — it covers the mock-first rule, the clinical-safety boundary for anything touching medical content, and how to pick up a good first issue.

Please keep secrets out of examples and prefer localhost defaults.


Environment variables: .env.example is the authoritative list (all 27 variables read by the source). Regenerate the ground truth with grep -rhoE "process\.env\.[A-Z_0-9]+" src/. ONTOLOGY_API_URL and FEAST_REPO_PATH are not read by any source file.


Contributors

Thank you to everyone who has helped molecare-mcp.

The list is filled by Contributors from GitHub commits, bots omitted — never hand-maintained, because a stale list is worse than none. Contributor graph · good first issue

License

Apache-2.0 © MoleCare LTD

Available Tools

14 tools
assess_risk_from_factorsA
Read-only

Describe named educational skin-health factors from a list of factor IDs. Does not calculate a risk score or recommend urgency.

ParametersJSON Schema
NameRequiredDescriptionDefault
riskFactorIdsYesArray of risk factor IDs (e.g., ['FAIR_SKIN', 'FAMILY_HISTORY', 'UV_EXPOSURE'])

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already convey readOnlyHint and openWorldHint, so the safety profile is covered. The description adds meaningful behavioral boundaries: it is educational, does not compute a risk score, and does not recommend urgency—all beyond what annotations provide. 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?

Two short sentences with no filler. The core function is front-loaded, and the critical limitation is stated immediately after, making the description highly scannable and easy to parse.

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 single-parameter read-only tool, the description covers purpose, input, and a key behavioral limitation. It does not describe the return format, but no output schema exists and the verb 'describe' implies descriptive text. Overall it is complete enough for an agent to invoke correctly, with a minor gap.

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%: the riskFactorIds parameter is fully documented with an example array. The description only refers generically to 'a list of factor IDs' and adds no new parameter-level detail, so the baseline of 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 uses a specific verb ('describe') and resource ('named educational skin-health factors'), and explicitly states what it does not do ('does not calculate a risk score or recommend urgency'). This clearly distinguishes it from sibling tools like get_user_risk_factors or classify_lesion_features, which imply different operations.

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 usage context clear: use when you have factor IDs and need educational descriptions of those factors. It explicitly excludes risk scoring and urgency assessment, serving as a when-not condition. However, it does not name an alternative tool for those cases, so the guidance is strong but not fully explicit.

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

classify_lesion_featuresA
Read-only

Describe which ABCDE criteria were supplied for a lesion. Educational only — does not name a condition, assign a risk level, or recommend urgency.

ParametersJSON Schema
NameRequiredDescriptionDefault
asymmetryNoIs the lesion asymmetric?
diameterMmNoDiameter in millimeters
hasChangedNoHas it changed over time?
multipleColorsNoDoes it have multiple colors?
irregularBorderNoDoes it have irregular borders?

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the description's educational-only framing adds context beyond the annotations. It explicitly discloses that the tool does not provide diagnostic conclusions, risk levels, or urgency recommendations, which is valuable behavioral context for an agent deciding whether to use this tool in a clinical scenario. The description does not contradict the 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 with no wasted words. The core purpose is stated first, followed by a clear boundary of what the tool does not do. Every sentence earns its place.

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 read-only, educational tool with 5 optional parameters and no output schema, the description is largely complete. It clarifies the educational scope and non-diagnostic nature, which is the most important contextual information. It could mention that all parameters are optional, but the schema already shows required: [], so the description need not repeat that. The lack of output schema means the agent won't know the return format, but for an educational description tool this is a minor gap.

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%, so the schema already documents all 5 parameters clearly. The description adds the overall context that these parameters are ABCDE criteria, but it does not add per-parameter meaning beyond what the schema provides. Baseline 3 is appropriate since the schema does the heavy lifting.

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

Purpose4/5

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

The description states a specific verb ('Describe') and resource ('ABCDE criteria supplied for a lesion'), and clarifies it is educational only. It distinguishes itself from risk assessment tools by explicitly saying it does not name a condition, assign risk, or recommend urgency, which helps differentiate it from siblings like assess_risk_from_factors and get_mole_analysis.

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 clearly indicates when to use this tool: when describing ABCDE criteria for a lesion in an educational context. It also provides exclusions by stating what it does NOT do (name a condition, assign risk, recommend urgency), which implicitly tells the agent not to use it for diagnosis or risk assessment. However, it does not explicitly name alternative tools for those purposes.

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

compare_molesA
Read-only

Compare two recorded mole photos. Reports observed differences only — not a diagnosis.

ParametersJSON Schema
NameRequiredDescriptionDefault
moleIdYesThe mole's unique identifier
imageId1YesFirst image ID (older)
imageId2YesSecond image ID (newer)

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and open-world assumptions. The description adds valuable behavioral context by stating 'Reports observed differences only — not a diagnosis', clarifying that the output is limited to observed differences and does not provide medical judgment. This goes beyond the annotations and sets proper expectations for the agent.

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 with no redundancy. It front-loads the action ('Compare two recorded mole photos') and immediately adds the key limitation ('not a diagnosis'). Every word earns its place, making it highly efficient.

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

Completeness3/5

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

The tool is relatively simple, and the schema covers all parameters. However, since there is no output schema, the description only vaguely mentions 'Reports observed differences' without specifying the output format (e.g., list of changes, textual summary). It also does not differentiate from the sibling get_mole_changes, which could lead to ambiguous tool selection. While the core purpose is clear, these gaps prevent a higher score.

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%, and each parameter already has a clear description (e.g., imageId1 'First image ID (older)', imageId2 'Second image ID (newer)'). The tool description adds no additional parameter semantics, so the baseline score of 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 clearly states the tool's function: 'Compare two recorded mole photos' – a specific verb and resource. It also distinguishes itself from diagnostic tools by noting 'not a diagnosis', which differentiates it from siblings like classify_lesion_features or assess_risk_from_factors. This makes the tool's purpose unambiguous.

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 usage context (comparing two photos of a mole) but does not explicitly mention when to use this tool versus alternatives like get_mole_changes, which might also track differences over time. There is no mention of exclusions or alternative routing, leaving the agent to infer the appropriate scenario.

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

get_condition_progressionA
Read-only

Get information about how a skin condition can progress. Shows potential progression paths (e.g., dysplastic nevus to melanoma).

ParametersJSON Schema
NameRequiredDescriptionDefault
snomedCodeYesSNOMED CT code of the condition

TDQS

A3.6/5.0
Behavior3/5

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

The readOnlyHint/openWorldHint annotations already cover safety and open-world behavior. The description adds that paths are 'potential' and gives an example, which is useful but does not disclose return format, limitations, or how incomplete matches are handled.

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 short sentences, front-loaded with the primary action, and an illustrative example. No filler or redundant restatement of the tool name.

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 single-parameter, read-only lookup, the description gives enough context: it states the input purpose, the kind of output (potential progression paths), and an example. It doesn't specify pagination or formatting, but that's not necessary for this simple call.

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% since the only parameter, snomedCode, is described. The description does little beyond confirming the condition is identified by a SNOMED CT code, so it mostly relies on the schema.

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 uses a specific verb and resource ('Get information about how a skin condition can progress') and gives a concrete example ('dysplastic nevus to melanoma'). This clearly differentiates it from sibling tools like get_condition_risk_factors by focusing on progression paths.

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?

The description provides no guidance on when to use this tool versus alternatives such as lookup_medical_concept, get_condition_risk_factors, or search_medical_info. No selection criteria or exclusions are given.

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

get_condition_risk_factorsA
Read-only

Get risk factors associated with a specific condition. Returns factors like family history, skin type, UV exposure.

ParametersJSON Schema
NameRequiredDescriptionDefault
snomedCodeYesSNOMED CT code of the condition

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds value by giving examples of the returned factors (family history, skin type, UV exposure), which informs the agent about the nature of the output without contradicting 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 a single sentence that is front-loaded with the action and resource, followed by examples. No wasted 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?

For a simple read-only lookup with one parameter and no output schema, the description provides sufficient information about what is returned (a list of risk factors with examples). The openWorldHint annotation covers non-exhaustiveness, and the tool is simple enough that no further details are needed.

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 describes the single parameter snomedCode with a description. The tool description does not add additional semantic detail beyond that, so the 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 'Get' and the resource 'risk factors associated with a specific condition', and specifies that it takes a condition code. This distinguishes it from sibling tools like get_user_risk_factors which focus on a user's risk profile rather than a condition.

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 usage for a specific condition via SNOMED code, but does not explicitly name alternatives or exclusions. However, the context is clear enough that an agent would know to use this when they have a condition code and need its risk factors, as opposed to user-specific tools.

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

get_malignant_conditionsA
Read-only

Get a list of all malignant skin conditions in the ontology. Use for educational purposes about skin cancers.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the description only needs to add behavioral context. It adds ontology-wide scope, but does not describe list contents, pagination, or any caveats about the returned data. This is adequate but not rich.

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

Conciseness4/5

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

Two short sentences, front-loaded with the core operation. The second sentence is slightly redundant by restating 'malignant skin conditions' as 'skin cancers,' so it is concise but not maximally tight.

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 parameterless read-only list tool, the description states what it returns and its purpose, and the lack of an output schema is mitigated by the simple list semantics. It could be slightly more complete by noting what fields or format the returned list contains.

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, so the input schema is fully documentative and no parameter explanations are needed. The description appropriately adds no parameter-specific details; the parameterless baseline of 4 applies.

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

Purpose4/5

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

The description identifies a specific verb ('Get'), resource ('list of all malignant skin conditions'), and scope ('in the ontology'). It is distinguishable from sibling concept-search tools by emphasizing 'all malignant skin conditions,' though it does not explicitly name a sibling it is not.

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?

It advises 'Use for educational purposes about skin cancers,' which gives an intended context but no when-not-to-use guidance and no comparison with alternatives such as lookup_medical_concept or search_medical_concepts. The usage guidance is present but not robust.

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

get_mole_analysisA
Read-only

Return recorded ABCDE feature measurements for a mole. Educational only — not a diagnosis or risk level.

ParametersJSON Schema
NameRequiredDescriptionDefault
moleIdYesThe mole's unique identifier

TDQS

A3.6/5.0
Behavior3/5

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

The description adds the valuable context that data is 'recorded' and that output is for educational purposes only. Annotations already provide readOnlyHint=true, so the safety profile is covered. It does not describe return format or pagination, but that is less critical for a simple one-parameter getter.

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, front-loaded with the operation and resource, and includes the critical educational caveat immediately. No filler or redundancy.

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?

Given the single parameter and read-only nature, the description sufficiently frames what the tool returns and its limitations. A brief note on output format would be a minor improvement, but nothing essential is missing for an agent to select and invoke it.

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 schema fully documents moleId as 'The mole's unique identifier' with 100% coverage. The description adds no extra parameter guidance, so it provides no value beyond the structured schema.

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

Purpose4/5

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

The description uses a clear verb ('Return') and specifies the resource ('recorded ABCDE feature measurements for a mole'). The 'not a diagnosis or risk level' caveat helps separate it from risk-focused siblings like get_user_risk_factors, though it doesn't explicitly name alternatives.

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 when to use the tool—when recorded ABCDE measurements are needed—and adds a clear boundary with 'Educational only — not a diagnosis or risk level.' However, it does not explicitly reference sibling tools or contrast cases (e.g., when to use get_mole_changes instead).

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

get_mole_changesA
Read-only

Return recorded appearance changes for a mole over time. Observations only — not a trend verdict.

ParametersJSON Schema
NameRequiredDescriptionDefault
moleIdYesThe mole's unique identifier

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is clear. The description adds useful context that the output consists of observations rather than a verdict, but does not disclose additional behavioral details such as ordering, absence of results, or output structure.

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 short sentences with no filler. The core action and scope are front-loaded, and the exclusion of trend verdicts is stated immediately after, which is economical and effective.

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 read-only tool with no output schema, the description adequately conveys what the tool returns and what it does not. It could mention output format or behavior on missing history, but the low complexity means nothing essential is missing.

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%, and the schema already documents moleId as 'The mole's unique identifier.' The description only references 'a mole' generically and adds no parameter-level meaning beyond the schema.

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 uses a specific verb and resource: 'Return recorded appearance changes for a mole over time.' The qualifier 'Observations only — not a trend verdict' clearly distinguishes it from analysis-oriented siblings like get_mole_analysis or get_condition_progression.

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 gives clear context: use this tool when you need raw recorded appearance changes over time, not an interpretive trend verdict. It implies but does not explicitly name an alternative for trend analysis, so it falls just short of full guidance.

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

get_user_molesA
Read-only

List a user's recorded moles and last photo dates. Educational records only — not a risk ranking.

ParametersJSON Schema
NameRequiredDescriptionDefault
userIdYesThe user's unique identifier

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds a useful behavioral boundary: this is educational record data, not a risk ranking. It does not disclose details like pagination or image-date formatting, but for a simple read-only listing the key behavior is conveyed.

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 short, information-dense sentences with no filler. The main action and resource are front-loaded, and the important 'educational only' caveat is placed at the end without bloating the description.

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 single-parameter read-only listing with no output schema, the description covers the core purpose and the important caveat. It could have briefly mentioned output ordering, pagination, or what 'last photo dates' means, but the essential information an agent needs to invoke it correctly is present.

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%: userId is documented with type, pattern, maxLength, and description. The description's 'a user's' maps naturally to userId, but it adds no additional meaning beyond what the schema already provides.

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 names a specific verb ('List') and a specific resource ('a user's recorded moles and last photo dates'). Adding 'Educational records only — not a risk ranking' distinguishes it from risk-oriented siblings like get_user_risk_factors and assess_risk_from_factors.

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 clearly states what this tool is not for ('not a risk ranking'), which helps an agent avoid using it for risk assessment. However, it does not explicitly name alternative tools or state when to prefer them over this one.

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

get_user_risk_factorsA
Read-only

List named educational skin-health factors on a user profile. Does not calculate a risk score.

ParametersJSON Schema
NameRequiredDescriptionDefault
userIdYesThe user's unique identifier

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish read-only and open-world behavior. The description adds meaningful context beyond that: the output is a list of named educational factorsasi and that no risk score is computed. This clarifies the tool's operational scope without contradicting the 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?

Single sentence with the core operation first and a key exclusion second. No filler or repetition of schema details.

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 one-parameter read-only list operation, the description is sufficient: it names the resource, the user scope, and the non-scoring behavior. It could be slightly more specific about the output shape, but the low complexity and explicit 'List ... factors' make this a minor gap.

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 complete for userId, including pattern and required status. The description only adds that the resource is user-specific, which is mild additional context. Baseline 3 is appropriate because the schema already carries the parameter semantics.

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 uses a specific verb ('List') and resource ('named educational skin-health factors on a user profile'), and explicitly disambiguates from scoring tools by saying it does not calculate a risk score. This clearly distinguishes it from siblings like assess_risk_from_factors and get_condition_risk_factors.

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 gives clear context: this tool lists factors rather than scoring them axes. The negative clause 'Does not calculate a risk score' signals when this tool is NOT appropriate. It does not explicitly name alternative siblings, but the exclusion is concrete enough for an agent to route correctly.

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

lookup_medical_conceptA
Read-only

Look up a medical concept by SNOMED CT code. Returns detailed information about skin conditions including severity and category. Use this to provide accurate medical terminology.

ParametersJSON Schema
NameRequiredDescriptionDefault
snomedCodeYesSNOMED CT code (e.g., '372244006' for melanoma)

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to state that it's read-only. It adds the scope (skin conditions) and content (severity, category), but does not disclose potential limitations (e.g., only handles skin codes, behavior on invalid codes) or the return structure. 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.

Conciseness5/5

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

The description is two sentences, front-loaded with the primary action and scope, followed by a brief usage note. Every word adds value, with no redundancy or filler. It is highly efficient and easy to scan.

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

Completeness3/5

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

With no output schema, the description must convey what the tool returns. It mentions 'detailed information about skin conditions including severity and category,' which gives a high-level view but lacks specifics like exact fields, formatting, or error handling. The scope (skin conditions) is stated but not justified, and no guidance is given for invalid codes or edge cases. The description is adequate but leaves room for ambiguity.

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 schema provides full documentation for snomedCode with an example, achieving 100% coverage. The description adds no extra detail about the parameter format, validation, or acceptable code ranges, so it relies on the schema. Baseline 3 is appropriate given complete schema coverage.

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 action (look up), the resource (medical concept), and the key identifier (SNOMED CT code). It also specifies the domain (skin conditions) and the output content (severity, category), which distinguishes it from siblings like search_medical_concepts (text search) and map_snomed_to_icd10 (code mapping). The 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.

Usage Guidelines3/5

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

The description provides a usage context ('Use this to provide accurate medical terminology') but does not explicitly state when not to use it or how it compares to alternatives like search_medical_concepts or get_condition_risk_factors. It implies a read-only informational lookup but lacks exclusions or selection criteria.

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

map_snomed_to_icd10A
Read-only

Map a SNOMED CT code to ICD-10 diagnosis codes. Useful for understanding official diagnosis classifications.

ParametersJSON Schema
NameRequiredDescriptionDefault
snomedCodeYesSNOMED CT code to map

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, which cover the read-only nature and potential incompleteness of mappings. The description adds only a minor note about 'official' classifications, which does not meaningfully extend behavioral context. It is consistent with the annotations but does not disclose additional behaviors such as output format or edge cases.

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 short sentences with zero filler. The core action and target are front-loaded in the first sentence, and the second sentence adds a brief use case. Every word earns its place.

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?

Given the simplicity (one required parameter, no output schema, and annotations covering read-only and open-world behavior), the description is mostly sufficient. It explains the primary function and a typical use case. However, it does not describe the return format or note that some SNOMED codes may not map, though these are minor given the tool's straightforward nature.

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 schema description for 'snomedCode' ('SNOMED CT code to map') is complete, covering 100% of the parameter. The tool description adds no extra information about the parameter beyond what the schema already provides, so the baseline of 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 clearly states a specific verb ('Map') and resource ('SNOMED CT code to ICD-10 diagnosis codes'). This is unambiguous and distinct from sibling tools like lookup_medical_concept or search_medical_concepts, which focus on retrieving concepts rather than cross-coding. The purpose is immediately clear.

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 provides a mild usage hint ('Useful for understanding official diagnosis classifications') but does not explicitly state when to use this tool over alternatives, nor does it name any sibling tools. Usage context is implied but not clearly delineated, leaving the agent to infer when mapping is appropriate.

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

search_medical_conceptsA
Read-only

Search for medical concepts by name or description. Returns matching SNOMED CT concepts for dermatology conditions.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch term (e.g., 'melanoma', 'nevus', 'mole')

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and non-exhaustiveness. The description adds that results are SNOMED CT concepts specifically for dermatology, and that search matches by name or description—useful context beyond the annotations. No contradiction.

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 with zero filler. The core action and scope are front-loaded, and every clause adds information. Ideal length for a tool with a single parameter.

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 one-parameter search tool, the description covers the return format (SNOMED CT concepts) and domain (dermatology). It lacks details on result limits or pagination, but given the openWorldHint and simplicity, this is a minor gap. The absence of an output schema is partially mitigated by the description's high-level return type.

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?

Schema coverage is 100%, so the query parameter is already well described with examples. The description adds the semantic detail that the search can match by both name and description, which is not present in the schema. This enriches the parameter understanding.

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 a specific verb ('Search') and resource ('medical concepts'), and narrows the scope to SNOMED CT and dermatology. This clearly differentiates it from sibling tools like get_user_moles (personal data), map_snomed_to_icd10 (mapping), and lookup_medical_concept (exact lookup).

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 a free-text search use case but does not explicitly contrast it with alternatives such as lookup_medical_concept (exact ID) or search_medical_info (broader scope). Given the abundance of sibling tools, explicit guidance on when to prefer this tool over others would be valuable, but its basic purpose is clear.

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

search_medical_infoA
Read-only

Search the medical knowledge base for skin health information. Use this to provide accurate educational content about skin conditions, ABCDE criteria, and prevention tips.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query (e.g., 'asymmetry', 'melanoma', 'sunscreen')

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already communicate read-only intent. The description adds minimal behavioral context beyond the subject matter — it doesn't mention result formats, ordering, or limits. No contradiction.

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 short sentences, front-loaded with action and domain, examples included. No dead weight.

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?

This is a simple read-only search with one well-described parameter and no output schema; the description states intended use (educational content for skin conditions) and scope, which is sufficient for an agent to pick it correctly. Slight ambiguity vs 'search_medical_concepts' but the skin-health qualifier resolves it.

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 covers the only parameter with a description and examples (100% coverage). The description adds no additional parameter detail, so baseline 3 applies.

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

Purpose4/5

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

The description uses a specific verb ('Search') and clearly identifies the resource (medical knowledge base for skin health information) with concrete examples (ABCDE criteria, prevention tips). The 'skin health' scope helps distinguish it from the sibling search_medical_concepts, though it does not explicitly name competitors.

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?

States a clear use case: to provide accurate educational content about skin conditions and related criteria. It doesn't explicitly state when to use search_medical_concepts or other alternatives, but the skin-specific context makes the intended use evident.

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.

  1. 44 tool updatesv1.1.0
    • Removedcheck_server_health
    • Removedclear_cache
    • Removedcompare_model_runs
    • Changedcompare_moles6 fields changed
      • addedInput schema / properties / imageId1 / maxLength
        Added value: +64
      • addedInput schema / properties / imageId1 / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
      • addedInput schema / properties / imageId2 / maxLength
        Added value: +64
      • addedInput schema / properties / imageId2 / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
      • addedInput schema / properties / moleId / maxLength
        Added value: +64
      • addedInput schema / properties / moleId / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
    • Removedget_all_apps_status
    • Removedget_app_errors
    • Removedget_app_metrics
    • Removedget_app_status
    • Removedget_app_store_status
    • Removedget_app_versions
    • Removedget_backup_history
    • Removedget_connection_pools
    • Removedget_database_metrics
    • Removedget_database_status
    • Removedget_deployment_status
    • Removedget_deployments
    • Removedget_ec2_health
    • Removedget_ec2_instance
    • Removedget_ec2_instances
    • Removedget_ec2_metrics
    • Removedget_feature_freshness
    • Removedget_feature_store_stats
    • Removedget_feature_view_details
    • Removedget_feature_views
    • Removedget_kubernetes_status
    • Removedget_mlflow_experiments
    • Removedget_mlflow_runs
    • Removedget_mobile_api_status
    • Removedget_model_version
    • Changedget_mole_analysis2 fields changed
      • addedInput schema / properties / moleId / maxLength
        Added value: +64
      • addedInput schema / properties / moleId / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
    • Changedget_mole_changes2 fields changed
      • addedInput schema / properties / moleId / maxLength
        Added value: +64
      • addedInput schema / properties / moleId / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
    • Removedget_online_features
    • Removedget_pipeline_runs
    • Removedget_pipeline_summary
    • Removedget_registered_models
    • Removedget_releases
    • Removedget_service_health
    • Removedget_slow_queries
    • Removedget_system_health
    • Removedget_table_stats
    • Removedget_training_runs
    • Changedget_user_moles2 fields changed
      • addedInput schema / properties / userId / maxLength
        Added value: +64
      • addedInput schema / properties / userId / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
    • Changedget_user_risk_factors2 fields changed
      • addedInput schema / properties / userId / maxLength
        Added value: +64
      • addedInput schema / properties / userId / pattern
        Added value: +"^[A-Za-z0-9_-]{1,64}$"
    • Removedget_web_app_status
  2. 53 tool updatesv1.0.2
    • First observedassess_risk_from_factors
    • First observedcheck_server_health
    • First observedclassify_lesion_features
    • First observedclear_cache
    • First observedcompare_model_runs
    • First observedcompare_moles
    • First observedget_all_apps_status
    • First observedget_app_errors
    • First observedget_app_metrics
    • First observedget_app_status
    • First observedget_app_store_status
    • First observedget_app_versions
    • First observedget_backup_history
    • First observedget_condition_progression
    • First observedget_condition_risk_factors
    • First observedget_connection_pools
    • First observedget_database_metrics
    • First observedget_database_status
    • First observedget_deployment_status
    • First observedget_deployments
    • First observedget_ec2_health
    • First observedget_ec2_instance
    • First observedget_ec2_instances
    • First observedget_ec2_metrics
    • First observedget_feature_freshness
    • First observedget_feature_store_stats
    • First observedget_feature_view_details
    • First observedget_feature_views
    • First observedget_kubernetes_status
    • First observedget_malignant_conditions
    • First observedget_mlflow_experiments
    • First observedget_mlflow_runs
    • First observedget_mobile_api_status
    • First observedget_model_version
    • First observedget_mole_analysis
    • First observedget_mole_changes
    • First observedget_online_features
    • First observedget_pipeline_runs
    • First observedget_pipeline_summary
    • First observedget_registered_models
    • First observedget_releases
    • First observedget_service_health
    • First observedget_slow_queries
    • First observedget_system_health
    • First observedget_table_stats
    • First observedget_training_runs
    • First observedget_user_moles
    • First observedget_user_risk_factors
    • First observedget_web_app_status
    • First observedlookup_medical_concept
    • First observedmap_snomed_to_icd10
    • First observedsearch_medical_concepts
    • First observedsearch_medical_info

TDQS

A4/5.0

Scored across 14 tools

Disambiguation4/5

Tools are largely distinct with clear purposes, but there is some potential overlap between search_medical_info and search_medical_concepts (both retrieve medical knowledge) and between get_mole_analysis and classify_lesion_features (both describe ABCDE features). However, the descriptions clarify the differences—one is for stored mole records, the other for supplied lesion features.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (e.g., get_user_moles, search_medical_info, lookup_medical_concept). The verbs (get, search, compare, lookup, map, assess, classify) are specific and the pattern is uniform, making the API predictable.

Tool Count5/5

14 tools is well within the ideal 3-15 range and each tool serves a distinct function within the skin health education domain. The scope feels appropriately sized—not too sparse, not overwhelming.

Completeness4/5

The tool set covers the core workflows: viewing user mole data, analyzing changes, retrieving medical info, looking up concepts, mapping codes, and understanding risk factors. A minor gap is the lack of tools for adding/updating mole records, but given the educational (non-CRUD) purpose, this is acceptable. Also, there is no explicit 'get_mole_photo' tool, though compare_moles implies photo access.

Maintenance

ActivityMaintained
ResponsivenessWithin a week

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI applications to query and retrieve healthcare data (patients, conditions, observations, medications) from a public FHIR R4 server via MCP tools.
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Read-only MCP server providing 5 tools for hybrid search, clause retrieval, policy versioning, code lookup, and plan rider override queries over a synthetic medical-policy corpus.
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables clinical workflows including search and summarization of synthetic FHIR patient records, PubMed literature search, and HIPAA Safe Harbor de-identification of text, via any MCP client.
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables answering authorized HR questions by exposing a set of read-only MCP tools over synthetic SuccessFactors-style data, with optional AI agent orchestration and configurable modes for mock, demo, or real test tenant usage.
    -