CodeWiki MCP Server
Integrates with Google CodeWiki to search, fetch, and cache documentation for GitHub repositories, enabling easy access to repository documentation through natural language queries.
README
CodeWiki MCP Server
An MCP (Model Context Protocol) server that integrates with Google CodeWiki to fetch and cache documentation for GitHub repositories.
Features
- Repository Search: Search for GitHub repositories on Google CodeWiki
- Documentation Fetching: Retrieve and parse documentation from CodeWiki
- Smart Caching: Cache documentation with TTL (Time To Live) to avoid repeated requests
- Documentation Search: Search within cached documentation for specific content
- Cache Management: List, clear, and manage cached repositories
Installation
- Clone this repository
- Install dependencies:
npm install - Build the project:
npm run build
Setup
VS Code Integration
The project includes VS Code MCP configuration. The .vscode/mcp.json file is automatically created during setup and configures the server for use with MCP-compatible clients.
Git Configuration
A comprehensive .gitignore file is included to exclude:
- Build outputs (
dist/,build/) - Cache directories (
.codewiki-cache/) - Environment files (
.env*) - IDE files (
.vscode/,.idea/) - OS files (
.DS_Store,Thumbs.db) - Logs and temporary files
Usage
As an MCP Server
This server can be used with any MCP-compatible client. The server provides the following tools:
search_repository
Search for GitHub repositories on Google CodeWiki.
Parameters:
query(string): Search query for repository name or owner/repo format
Example:
{
"query": "facebook/react"
}
get_repository_docs
Get documentation for a specific GitHub repository.
Parameters:
owner(string): Repository owner/organizationrepo(string): Repository nameforce_refresh(boolean, optional): Force refresh cached documentation (default: false)
Example:
{
"owner": "facebook",
"repo": "react",
"force_refresh": false
}
search_documentation
Search within cached documentation for a repository.
Parameters:
owner(string): Repository owner/organizationrepo(string): Repository namequery(string): Search query within the documentation
Example:
{
"owner": "facebook",
"repo": "react",
"query": "hooks"
}
list_cached_repositories
List all repositories currently cached.
Parameters: None
clear_cache
Clear the documentation cache.
Parameters:
owner(string, optional): Specific repository owner to clearrepo(string, optional): Repository name when clearing specific repo
Examples:
{
"owner": "facebook",
"repo": "react"
}
{}
Direct Usage
You can also run the server directly:
npm start
Configuration
Cache Settings
The cache manager supports the following configuration:
- Default TTL: 24 hours (configurable)
- Cache Directory:
.codewiki-cachein the project root - Memory Cache: In-memory cache for frequently accessed data
- Disk Cache: Persistent cache stored as JSON files
Environment Variables
CODEWIKI_CACHE_DIR: Custom cache directory pathCODEWIKI_CACHE_TTL: Cache TTL in milliseconds (default: 86400000)
Project Structure
codewiki-mcp-server/
├── src/
│ ├── server.ts # Main MCP server implementation
│ ├── codewiki-client.ts # Client for interacting with Google CodeWiki
│ └── cache-manager.ts # Manages caching of documentation
├── .vscode/
│ └── mcp.json # MCP server configuration for VS Code
├── .gitignore # Git ignore rules
├── LICENSE # MIT License
├── README.md # This file
├── mcp.json # MCP server manifest
├── package.json # Project dependencies and scripts
└── tsconfig.json # TypeScript configuration
Architecture
Components
- Server (
server.ts): Main MCP server implementation - CodeWikiClient (
codewiki-client.ts): Client for interacting with Google CodeWiki - CacheManager (
cache-manager.ts): Manages caching of documentation
Data Flow
- Client requests repository documentation
- Server checks cache for existing data
- If not cached or expired, fetches from Google CodeWiki
- Parses and structures the documentation
- Stores in cache for future requests
- Returns structured documentation to client
Development
Building
npm run build
Development Mode
npm run dev
Cleaning
npm run clean
Limitations
- No Public API: Google CodeWiki doesn't provide a public API, so this server uses web scraping
- Rate Limiting: Be respectful of CodeWiki's servers with appropriate delays
- Repository Coverage: Not all repositories may have CodeWiki documentation available
- Content Parsing: HTML structure changes on CodeWiki may require updates to the parsing logic
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License - see LICENSE file for details.
Author
Chris Bunting cbuntingde@gmail.com
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。