cms-mcp-retriever
A utility designed to query and fetch documentation assets from the microCMS repository utilizing the Model Context Protocol (MCP) framework. This enables seamless integration for large language model (LLM) clients seeking specific knowledge artifacts managed within microCMS.
Author

SpringMT
Quick Info
Actions
Tags
microCMS MCP Data Fetcher
This server implementation bridges LLM agents utilizing the Model Context Protocol (MCP) with content stored in microCMS, enabling intelligent knowledge retrieval.
Core Functionalities
- Content discovery via the microCMS API interface.
- Targeted retrieval of specific data objects.
- Adherence to the Model Context Protocol (MCP) specification for interoperability.
Configuration Variables
MICROCMS_API_KEY: Authentication token required for accessing the microCMS backend (Mandatory).MICROCMS_SERVICE_DOMAIN: The unique domain identifier for the microCMS instance (Mandatory).MICROCMS_ENDPOINT: Optional parameter specifying an alternative access point.
Compilation Process
bash npm run build
Operational Usage
Invocation from MCP-Aware Consoles
As this service conforms to MCP standards, it is readily callable by any compatible LLM client infrastructure:
{ "mcpServers": { "cmsConnector": { "command": "node", "args": [ "/ABSOLUTE/PATH/TO/PARENT/FOLDER/build/index.js" ], "env": { "MICROCMS_API_KEY": "[YOUR_KEY]", "MICROCMS_SERVICE_DOMAIN": "[YOUR_DOMAIN]", "MICROCMS_ENDPOINT": "[OPTIONAL_ENDPOINT]" } } } }
