CHECK-MODULE MCP Server
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 |
|---|---|
| tools | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search-docsA | Search through internal documentation. Returns relevant documents based on query, category, and tags. |
| get-docA | Get full documentation by ID. Returns the complete content of a specific document. |
| list-categoriesA | List all available documentation categories. |
| add-docC | Add or update documentation. Stores a new document or updates an existing one. |
| fetch-library-docsC | Fetch official documentation from online sources for libraries and frameworks (LangGraph, React, FastAPI, etc.). Automatically retrieves up-to-date documentation from the web. |
| list-available-librariesA | List all libraries that have known documentation sources configured. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Authentication API | How to authenticate with our internal API |
| Database Schema | Internal database schema documentation |
| Deployment Guide | How to deploy our applications |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: adding/updating docs, fetching external docs, retrieving by ID, listing libraries, listing categories, and searching. No overlap.
All tool names follow a consistent lowercase-hyphenated verb-noun pattern (e.g., add-doc, fetch-library-docs, list-available-libraries).
With 6 tools covering creation, retrieval, listing, searching, and external fetching, the set is well-scoped for a documentation server.
The tools cover core CRUD operations (add, get, search, list) and add external fetching, but lack an explicit delete or separate update tool (though add-doc covers both add and update).