CHECK-MODULE MCP Server
Enables managing internal documentation with search and add capabilities, and fetching official documentation from 13+ popular libraries via MCP tools.
README
CHECK-MODULE MCP Server
A powerful Model Context Protocol (MCP) server for managing internal documentation and fetching official library documentation from the web.
š„ Demo
https://github.com/user-attachments/assets/aec8d362-4ac3-477f-84db-fc304cd7e927
Watch CHECK-MODULE in action: fetching documentation, searching internal docs, and managing custom documentation with Claude Desktop.
šÆ Features
- š Internal Documentation Management - Store, search, and manage your custom documentation
- š Web Documentation Fetching - Automatically fetch official documentation from 13+ popular libraries
- š Smart Search - Relevance-based search with category and tag filtering
- š Markdown Support - Full Markdown formatting for documentation
- š§ MCP Tools - 6 powerful tools exposed via Model Context Protocol
- š¦ Resources - URI-based access to documentation (
doc://internal/*)
š¦ Installation
# Clone the repository
git clone https://github.com/muhammedehab35/CHECK-MODULE-MCP.git
cd CHECK-MODULE-MCP
# Install dependencies
npm install
# Build the project
npm run build
āļø Configuration
Add to your Claude Desktop config file (claude_desktop_config.json):
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS/Linux: ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"CHECK-MODULE": {
"command": "node",
"args": [
"/absolute/path/to/CHECK-MODULE-MCP/dist/index.js"
]
}
}
}
Then restart Claude Desktop completely.
š Usage
Internal Documentation Tools
search-docs - Search your internal documentation
Search for "authentication" in the documentation
get-doc - Get a complete document by ID
Show me the Authentication API guide
list-categories - List all documentation categories
What documentation categories are available?
add-doc - Add or update documentation
Add documentation about Redis caching with ID "redis-cache"
Web Documentation Fetching
fetch-library-docs - Fetch official documentation from the web
Use CHECK-MODULE to fetch LangGraph documentation about creating agents
list-available-libraries - Show supported libraries
What libraries can CHECK-MODULE fetch documentation for?
š Supported Libraries
CHECK-MODULE can automatically fetch documentation for:
- AI/ML: LangGraph, LangChain, PyTorch, TensorFlow, CrewAI
- Web Frameworks: React, Next.js, Vue, Express, FastAPI, Django
- Data Science: Pandas, NumPy
š ļø Available Tools
| Tool | Description |
|---|---|
search-docs |
Search internal documentation with filters |
get-doc |
Retrieve full document by ID |
list-categories |
List all documentation categories |
add-doc |
Add or update documentation |
fetch-library-docs |
Fetch official docs from the web |
list-available-libraries |
Show supported libraries |
šļø Project Structure
CHECK-MODULE-MCP/
āāā src/
ā āāā index.ts # Main MCP server
ā āāā docStore.ts # Documentation storage
ā āāā webFetcher.ts # Web documentation fetcher
ā āāā types.ts # TypeScript type definitions
āāā dist/ # Compiled JavaScript (generated)
āāā package.json # Project configuration
āāā tsconfig.json # TypeScript configuration
āāā README.md # This file
š§ Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode (auto-rebuild)
npm run watch
# Run manually (for testing)
npm start
š Examples
Example 1: Search Internal Docs
User: Search for "deployment" in DevOps category
Claude: [Uses search-docs tool]
Found 1 result: Deployment Guide with Docker/Kubernetes instructions
Example 2: Fetch Web Documentation
User: How do I create an agent in LangGraph?
Claude: [Uses fetch-library-docs tool]
Fetches from https://langchain-ai.github.io/langgraph/
Returns: Step-by-step guide with code examples
Example 3: Add Custom Documentation
User: Add docs about our Redis caching strategy
Claude: [Uses add-doc tool]
Documentation stored with ID "redis-cache"
šØ Customization
Adding More Libraries
Edit src/webFetcher.ts to add custom documentation sources:
const DOC_SOURCES: Record<string, string> = {
'your-library': 'https://docs.your-library.com/',
// ... existing libraries
};
Then rebuild: npm run build
Pre-loading Documentation
Edit src/docStore.ts in the initializeSampleDocs() method to add your initial documentation.
š Troubleshooting
Server not starting
# Test the build
npm run build
# Run directly
node dist/index.js
# Should output: "CHECK-MODULE MCP Server running on stdio"
Claude doesn't see the tools
- Check that the path in
claude_desktop_config.jsonis absolute - Restart Claude Desktop completely
- Check developer console (
Ctrl+Shift+I) for errors
Web fetching not working
- Ensure you have internet connection
- Check if the library is in the supported list
- The library name must match exactly (case-insensitive)
š Pre-loaded Documentation
The server comes with 3 example documents:
- Authentication API (
api-auth) - JWT authentication guide - Database Schema (
db-schema) - PostgreSQL schema reference - Deployment Guide (
deploy-guide) - Docker/Kubernetes deployment
š® Roadmap
- [ ] Add more library documentation sources
- [ ] Implement persistent storage (SQLite/PostgreSQL)
- [ ] Add version history tracking
- [ ] Support for custom authentication
- [ ] REST API for external management
- [ ] Import from Markdown files
- [ ] Export documentation to various formats
š¤ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the project
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
š License
This project is licensed under the MIT License - see the LICENSE file for details.
š Acknowledgments
- Built with @modelcontextprotocol/sdk
- Inspired by Context7
- Uses Zod for schema validation
š Support
- Issues: GitHub Issues
- Documentation: MCP Documentation
Made with ā¤ļø using TypeScript and MCP
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.