CodeWeaver
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tasks | {
"list": {},
"cancel": {},
"requests": {
"tools": {
"call": {}
}
}
} |
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"subscribe": true,
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| code_clinical_noteA | CODING ASSISTANCE TOOL (not a diagnostic tool). Accepts a clinical note and returns ranked ICD-10-CM diagnosis code candidates with constraint validation. Scope: cardiac (I20-I25), diabetes (E08-E13), respiratory (J00-J99), musculoskeletal (curated: M15-M19 arthritis, M25 joint disorders, M54 dorsalgia, M70-M81 soft tissue/osteoporosis). Data: CMS ICD-10-CM FY2026 (icd10cm-tabular-2026.xml), scoped to 4 categories, with supplemented inclusion terms for matchability. When no local match clears the confidence threshold, live-queries the NLM Clinical Tables ICD-10-CM API (full code set, U.S. National Library of Medicine) as an unvalidated fallback, returned under externalSuggestions. |
| lookup_icd10_codeA | Returns full detail for a single ICD-10-CM code including inclusion terms and Excludes1/2 relationships. Data: CMS FY2026, scoped to cardiac/diabetes/respiratory/musculoskeletal (curated). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| explain_decision | Generates a coding rationale prompt explaining why each ICD-10 code was suggested, flagged, or blocked. Pass the JSON output of code_clinical_note as the "pipeline_result" argument. Intended for coder review, not clinical use. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| ICD-10 Code List | ICD-10-CM code reference sourced from CMS FY2026 data — all codes across cardiac (I20-I25), diabetes (E08-E13), respiratory (J00-J99), and musculoskeletal (curated: M15-M19 arthritis, M25 joint disorders, M54 dorsalgia, M70-M81 soft tissue/osteoporosis) categories. Scoped to these categories only, not full ICD-10-CM coverage. |
| ICD-10 Cardiac Codes | Cardiac ICD-10-CM codes (I20-I25) sourced from CMS FY2026 data. |
| ICD-10 Diabetes Codes | Diabetes ICD-10-CM codes (E08-E13) sourced from CMS FY2026 data. |
| ICD-10 Respiratory Codes | Respiratory ICD-10-CM codes (J00-J99) sourced from CMS FY2026 data. |
| ICD-10 Musculoskeletal Codes | Musculoskeletal ICD-10-CM codes sourced from CMS FY2026 data. Curated slice — M15-M19 (arthritis/osteoarthritis), M25 (joint disorders), M54 (dorsalgia), M70-M81 (soft tissue disorders, osteoporosis) — not the full M00-M99 chapter. |
| Health Checks | Current health status of all registered health checks |
| Widget Examples | Provides metadata and examples for all registered UI widgets |
TDQS
Scored across 2 tools
The two tools serve clearly distinct purposes: one generates diagnosis code candidates from a clinical note, while the other retrieves detailed information for a specific ICD-10 code. There is no functional overlap.
Both tool names follow a consistent verb_noun pattern in snake_case: 'code_clinical_note' and 'lookup_icd10_code'. The naming is predictable and clear.
With only 2 tools, the server feels thin for a coding/ICD-10 domain. While the two covered operations are useful, the scope is narrow and one could expect additional utilities like searching for codes or exploring categories.
The server covers the primary workflows: submitting a note for code suggestions and looking up code details. Minor gaps exist, such as no direct search-by-description or category-browsing tool, but the core use cases are addressed.