KCSC MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| KCSC_API_KEY | Yes | KCSC OpenAPI key (required) | |
| KCSC_CA_BUNDLE | No | Path to corporate CA certificate bundle | |
| KCSC_VERIFY_SSL | No | Set to 'false' to disable SSL verification | |
| KCSC_CACHE_TTL_SECONDS | No | Cache TTL in seconds (default: 600) | 600 |
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 |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| kcsc_list_codesB | List available KCSC codes with optional filtering and pagination. |
| kcsc_get_contentA | Fetch the full document content for a specific KCS or KDS code. |
| kcsc_search_codesB | Search KCSC codes by keyword. |
| kcsc_search_sectionsA | Search titles and contents inside a single KCSC document. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: listing codes, searching codes, getting full content for a code, and searching within a single document. No overlap or ambiguity.
All tools follow the consistent 'kcsc_verb_noun' pattern with snake_case, e.g., kcsc_get_content, kcsc_list_codes, kcsc_search_codes, kcsc_search_sections.
Four tools is well-scoped for a code/document lookup server, covering key operations without redundancy or deficiency.
The set covers listing, searching, and retrieving content for KCSC codes. A minor gap is the lack of a standalone 'list sections' or metadata-only endpoint, but search_sections partially addresses in-document navigation.