MoleCare MCP Server
OfficialThis server provides dermatology education, mole-tracking product data, and infrastructure/MLOps tooling to MCP clients like Claude, with mock data until real backends are configured.
Dermatology knowledge (no setup): search medical info, look up SNOMED CT concepts, map SNOMED to ICD-10, classify lesion ABCDE features, assess risk factors, get condition progression/risk factors, and list malignant conditions.
MoleCare product data (needs API): list user moles, get mole analysis and change history, retrieve user risk factors, and compare moles.
Health & service monitoring: check system/service/app health, database status, Kubernetes status, EC2 instance health, and clear caches.
MLflow & model ops: list experiments/runs, registered models, model versions, compare runs, and get training runs.
Feature store (Feast): view feature views, details, freshness, online features, and feature store stats.
CI/CD & deployments: view pipeline runs, pipeline summaries, deployments, deployment status, and releases.
AWS infrastructure: inspect EC2 instances, instance health, CloudWatch metrics, and check app server health.
Application monitoring: get status/versions/metrics/errors for web, mobile, API, and app store.
Database operations: inspect database status, metrics, slow queries, table stats, backups, and connection pools.
Provides Kubernetes operations tooling for checking cluster status through the get_kubernetes_status tool.
Provides MLflow tracking tools to list experiments and runs, inspect registered models and model versions, compare runs, and review training runs.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MoleCare MCP ServerExplain the ABCDE criteria for melanoma"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MoleCare MCP Server
Model Context Protocol (MCP) server that gives Claude and other MCP clients access to:
Dermatology knowledge — ABCDE education, SNOMED CT / ICD-10 helpers, risk-factor prompts
Optional MoleCare API tools — moles, trends, analysis (your backend + API key)
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-mcpIt 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 HTTP API |
|
| API bearer / key |
|
| Ontology service |
|
| MLflow |
|
| Feast | — |
| EC2 / CloudWatch clients |
|
| CI/CD tools | — |
| Bind an HTTP |
|
| Same, for container health probes |
|
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 the dermatology knowledge base |
| Look up a SNOMED CT concept |
| Search conditions by name or description |
| Map a SNOMED CT code to ICD-10 |
| ABCDE-style feature descriptors for a lesion |
| Named educational risk factors (no score) |
| Known risk factors for a condition |
| Typical progression stages for a condition |
| 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. |
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 |
| List moles for a user id |
| Analysis payload for a mole |
| Change history for a mole |
| A user's risk profile |
| 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 |
|
MLflow |
|
Feature store |
|
CI/CD |
|
AWS |
|
Apps |
|
Database |
|
Kubernetes |
|
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-cloudwatchArchitecture
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/healthSecurity
Never commit
.envfiles or API keys — see SECURITY.md to report a vulnerabilityPrefer mock mode for demos and screenshots
Tools that accept
userIdcan return PHI only if you point them at a real backend with real auth — treat that as productionRate-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 InspectorContributions 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.
Related
Environment variables:
.env.exampleis the authoritative list (all 27 variables read by the source). Regenerate the ground truth withgrep -rhoE "process\.env\.[A-Z_0-9]+" src/.ONTOLOGY_API_URLandFEAST_REPO_PATHare not read by any source file.
MoleCare-ML — melanoma classification service and training notebooks
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 toolsassess_risk_from_factorsARead-only
Describe named educational skin-health factors from a list of factor IDs. Does not calculate a risk score or recommend urgency.
| Name | Required | Description | Default |
|---|---|---|---|
| riskFactorIds | Yes | Array of risk factor IDs (e.g., ['FAIR_SKIN', 'FAMILY_HISTORY', 'UV_EXPOSURE']) |
TDQS
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.
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.
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.
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.
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.
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_featuresARead-only
Describe which ABCDE criteria were supplied for a lesion. Educational only — does not name a condition, assign a risk level, or recommend urgency.
| Name | Required | Description | Default |
|---|---|---|---|
| asymmetry | No | Is the lesion asymmetric? | |
| diameterMm | No | Diameter in millimeters | |
| hasChanged | No | Has it changed over time? | |
| multipleColors | No | Does it have multiple colors? | |
| irregularBorder | No | Does it have irregular borders? |
TDQS
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.
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.
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.
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.
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.
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_molesARead-only
Compare two recorded mole photos. Reports observed differences only — not a diagnosis.
| Name | Required | Description | Default |
|---|---|---|---|
| moleId | Yes | The mole's unique identifier | |
| imageId1 | Yes | First image ID (older) | |
| imageId2 | Yes | Second image ID (newer) |
TDQS
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.
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.
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.
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.
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.
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_progressionARead-only
Get information about how a skin condition can progress. Shows potential progression paths (e.g., dysplastic nevus to melanoma).
| Name | Required | Description | Default |
|---|---|---|---|
| snomedCode | Yes | SNOMED CT code of the condition |
TDQS
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.
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.
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.
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.
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.
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_factorsARead-only
Get risk factors associated with a specific condition. Returns factors like family history, skin type, UV exposure.
| Name | Required | Description | Default |
|---|---|---|---|
| snomedCode | Yes | SNOMED CT code of the condition |
TDQS
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.
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.
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.
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.
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.
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_conditionsARead-only
Get a list of all malignant skin conditions in the ontology. Use for educational purposes about skin cancers.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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_analysisARead-only
Return recorded ABCDE feature measurements for a mole. Educational only — not a diagnosis or risk level.
| Name | Required | Description | Default |
|---|---|---|---|
| moleId | Yes | The mole's unique identifier |
TDQS
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.
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.
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.
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.
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.
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_changesARead-only
Return recorded appearance changes for a mole over time. Observations only — not a trend verdict.
| Name | Required | Description | Default |
|---|---|---|---|
| moleId | Yes | The mole's unique identifier |
TDQS
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.
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.
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.
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.
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.
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_molesARead-only
List a user's recorded moles and last photo dates. Educational records only — not a risk ranking.
| Name | Required | Description | Default |
|---|---|---|---|
| userId | Yes | The user's unique identifier |
TDQS
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.
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.
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.
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.
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.
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_factorsARead-only
List named educational skin-health factors on a user profile. Does not calculate a risk score.
| Name | Required | Description | Default |
|---|---|---|---|
| userId | Yes | The user's unique identifier |
TDQS
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.
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.
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.
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.
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.
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_conceptARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| snomedCode | Yes | SNOMED CT code (e.g., '372244006' for melanoma) |
TDQS
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.
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.
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.
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.
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.
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_icd10ARead-only
Map a SNOMED CT code to ICD-10 diagnosis codes. Useful for understanding official diagnosis classifications.
| Name | Required | Description | Default |
|---|---|---|---|
| snomedCode | Yes | SNOMED CT code to map |
TDQS
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.
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.
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.
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.
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.
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_conceptsARead-only
Search for medical concepts by name or description. Returns matching SNOMED CT concepts for dermatology conditions.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search term (e.g., 'melanoma', 'nevus', 'mole') |
TDQS
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.
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.
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.
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.
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.
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_infoARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (e.g., 'asymmetry', 'melanoma', 'sunscreen') |
TDQS
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.
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.
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.
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.
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.
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.
44 tool updates
v1.1.0- Removed
check_server_health - Removed
clear_cache - Removed
compare_model_runs - Changed
compare_moles6 fields changed- added
Input schema / properties / imageId1 / maxLengthAdded value: +64 - added
Input schema / properties / imageId1 / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$" - added
Input schema / properties / imageId2 / maxLengthAdded value: +64 - added
Input schema / properties / imageId2 / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$" - added
Input schema / properties / moleId / maxLengthAdded value: +64 - added
Input schema / properties / moleId / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$"
- Removed
get_all_apps_status - Removed
get_app_errors - Removed
get_app_metrics - Removed
get_app_status - Removed
get_app_store_status - Removed
get_app_versions - Removed
get_backup_history - Removed
get_connection_pools - Removed
get_database_metrics - Removed
get_database_status - Removed
get_deployment_status - Removed
get_deployments - Removed
get_ec2_health - Removed
get_ec2_instance - Removed
get_ec2_instances - Removed
get_ec2_metrics - Removed
get_feature_freshness - Removed
get_feature_store_stats - Removed
get_feature_view_details - Removed
get_feature_views - Removed
get_kubernetes_status - Removed
get_mlflow_experiments - Removed
get_mlflow_runs - Removed
get_mobile_api_status - Removed
get_model_version - Changed
get_mole_analysis2 fields changed- added
Input schema / properties / moleId / maxLengthAdded value: +64 - added
Input schema / properties / moleId / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$"
- Changed
get_mole_changes2 fields changed- added
Input schema / properties / moleId / maxLengthAdded value: +64 - added
Input schema / properties / moleId / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$"
- Removed
get_online_features - Removed
get_pipeline_runs - Removed
get_pipeline_summary - Removed
get_registered_models - Removed
get_releases - Removed
get_service_health - Removed
get_slow_queries - Removed
get_system_health - Removed
get_table_stats - Removed
get_training_runs - Changed
get_user_moles2 fields changed- added
Input schema / properties / userId / maxLengthAdded value: +64 - added
Input schema / properties / userId / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$"
- Changed
get_user_risk_factors2 fields changed- added
Input schema / properties / userId / maxLengthAdded value: +64 - added
Input schema / properties / userId / patternAdded value: +"^[A-Za-z0-9_-]{1,64}$"
- Removed
get_web_app_status
53 tool updates
v1.0.2- First observed
assess_risk_from_factors - First observed
check_server_health - First observed
classify_lesion_features - First observed
clear_cache - First observed
compare_model_runs - First observed
compare_moles - First observed
get_all_apps_status - First observed
get_app_errors - First observed
get_app_metrics - First observed
get_app_status - First observed
get_app_store_status - First observed
get_app_versions - First observed
get_backup_history - First observed
get_condition_progression - First observed
get_condition_risk_factors - First observed
get_connection_pools - First observed
get_database_metrics - First observed
get_database_status - First observed
get_deployment_status - First observed
get_deployments - First observed
get_ec2_health - First observed
get_ec2_instance - First observed
get_ec2_instances - First observed
get_ec2_metrics - First observed
get_feature_freshness - First observed
get_feature_store_stats - First observed
get_feature_view_details - First observed
get_feature_views - First observed
get_kubernetes_status - First observed
get_malignant_conditions - First observed
get_mlflow_experiments - First observed
get_mlflow_runs - First observed
get_mobile_api_status - First observed
get_model_version - First observed
get_mole_analysis - First observed
get_mole_changes - First observed
get_online_features - First observed
get_pipeline_runs - First observed
get_pipeline_summary - First observed
get_registered_models - First observed
get_releases - First observed
get_service_health - First observed
get_slow_queries - First observed
get_system_health - First observed
get_table_stats - First observed
get_training_runs - First observed
get_user_moles - First observed
get_user_risk_factors - First observed
get_web_app_status - First observed
lookup_medical_concept - First observed
map_snomed_to_icd10 - First observed
search_medical_concepts - First observed
search_medical_info
TDQS
Scored across 14 tools
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.
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.
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.
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
Related MCP Connectors
Governed data discovery, exact queries, decisions, simulations, and runtime utilities over MCP.
Hosted MCP server for the Healthie EHR & telehealth API: patients, appointments, charting, tasks.
Public, read-only MCP server for FarmNeural company facts, packages, and capabilities.
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI applications to query and retrieve healthcare data (patients, conditions, observations, medications) from a public FHIR R4 server via MCP tools.MIT
- FlicenseNot gradedqualityBmaintenanceRead-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.-
- AlicenseNot gradedqualityBmaintenanceEnables 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
- FlicenseNot gradedqualityBmaintenanceEnables 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.-