LangChain Documentation MCP Server
Provides real-time access to official LangChain documentation, API references, and GitHub code examples to assist in LangChain-based development. It enables LLMs to search for tutorials, version info, and detailed class specifications directly from live sources.
README
LangChain Documentation MCP Server
A comprehensive dual-mode server that provides real-time access to LangChain documentation, API references, and code examples. Supports both FastAPI web service and native Model Context Protocol (MCP) server modes, fetching live data from official LangChain sources.
🚀 Features
- �️ Dual Server Modes - Run as FastAPI web service or native MCP server
- �📚 Live Documentation Search - Search through official LangChain documentation in real-time
- 🔍 API Reference Lookup - Get detailed API references from GitHub source code
- 🐙 GitHub Code Examples - Fetch real code examples from the LangChain repository
- 📖 Tutorial Discovery - Find and access LangChain tutorials and guides
- 📦 Version Tracking - Get latest version information from PyPI
- 🔗 Direct API Search - Search specifically through API reference documentation
- 🔌 MCP Protocol Support - Native Model Context Protocol implementation
🌐 Data Sources
This server fetches live data from:
- python.langchain.com - Official LangChain documentation
- GitHub LangChain Repository - Source code and examples
- PyPI - Latest version and release information
📋 API Endpoints
Core Endpoints
GET /- API documentation (Swagger UI)GET /health- Health check and service status
LangChain Documentation
GET /search- Search general documentationGET /search/api- Search API reference specificallyGET /api-reference/{class_name}- Get detailed API reference for a classGET /examples/github- Get real code examples from GitHubGET /tutorials- Get tutorials and guidesGET /latest-version- Get latest LangChain version info
🚀 Quick Start
Option 1: Docker Compose (Recommended)
-
Clone the repository
git clone https://github.com/LiteObject/langchain-mcp-server.git cd langchain-mcp-server -
Start the FastAPI server
docker-compose up --build -
Access the API
- API Documentation: http://localhost:8080/docs
- Health Check: http://localhost:8080/health
Option 2: Local Development
FastAPI Mode
-
Install dependencies
pip install -r requirements.txt -
Run the FastAPI server
# Using the main entry point python run.py # Or using the dedicated script python scripts/run_fastapi.py # Or directly with uvicorn uvicorn src.api.fastapi_app:app --host 0.0.0.0 --port 8000
MCP Server Mode
-
Install dependencies
pip install -r requirements.txt -
Run the MCP server
# Using the main entry point python run.py mcp # Or using the dedicated script python scripts/run_mcp.py
📚 Usage Examples
Search Documentation
# Search for "ChatOpenAI" in documentation
curl "http://localhost:8080/search?query=ChatOpenAI&limit=5"
# Search API reference specifically
curl "http://localhost:8080/search/api?query=embeddings"
Get API Reference
# Get detailed API reference for ChatOpenAI
curl "http://localhost:8080/api-reference/ChatOpenAI"
# Get API reference for LLMChain
curl "http://localhost:8080/api-reference/LLMChain"
Fetch Code Examples
# Get real examples from GitHub
curl "http://localhost:8080/examples/github?query=chatbot&limit=3"
# Get general examples
curl "http://localhost:8080/examples/github"
Get Tutorials
# Fetch all available tutorials
curl "http://localhost:8080/tutorials"
Version Information
# Get latest version from PyPI
curl "http://localhost:8080/latest-version"
🔌 MCP Server Usage
When running in MCP mode, the server provides the following tools:
Available MCP Tools
search_langchain_docs- Search LangChain documentationsearch_api_reference- Search API reference specificallyget_api_reference- Get detailed API reference for a classget_github_examples- Get code examples from GitHubget_tutorials- Get available tutorialsget_latest_version- Get latest LangChain version
MCP Client Integration
{
"mcpServers": {
"langchain-docs": {
"command": "python",
"args": ["path/to/langchain-mcp-server/run.py", "mcp"],
"env": {
"PYTHONPATH": "path/to/langchain-mcp-server"
}
}
}
}
🛠️ Configuration
Environment Variables
| Variable | Description | Default |
|---|---|---|
HOST |
Server host address | 0.0.0.0 |
PORT |
Server port | 8000 |
DEBUG |
Enable debug mode | False |
LOG_LEVEL |
Logging level | INFO |
REQUEST_TIMEOUT |
Timeout for external API calls | 30 seconds |
GITHUB_TOKEN |
GitHub API token (optional) | None |
Docker Configuration
The service runs on port 8080 by default to avoid conflicts. You can modify this in docker-compose.yml:
ports:
- "8080:8000" # Host:Container
🔧 Development
Project Structure
├── src/ # Main source code package
│ ├── main.py # Main entry point with dual mode support
│ ├── api/ # API layer
│ │ ├── fastapi_app.py # FastAPI application
│ │ └── mcp_server.py # Native MCP server implementation
│ ├── config/ # Configuration management
│ │ ├── settings.py # Application settings
│ │ └── logging.py # Logging configuration
│ ├── models/ # Data models and schemas
│ │ └── schemas.py # Pydantic models
│ ├── services/ # Business logic
│ │ └── langchain_service.py # LangChain documentation service
│ └── utils/ # Utility modules
│ ├── exceptions.py # Custom exceptions
│ └── helpers.py # Helper functions
├── scripts/ # Convenience scripts
│ ├── run_fastapi.py # Run FastAPI mode
│ ├── run_mcp.py # Run MCP mode
│ └── health_check.py # Health check utility
├── tests/ # Test suite
│ ├── test_api.py # API tests
│ ├── test_services.py # Service tests
│ └── test_integration.py # Integration tests
├── docs/ # Documentation
│ └── API.md # API documentation
├── logs/ # Log files
├── run.py # Simple entry point
├── requirements.txt # Python dependencies
├── pyproject.toml # Project configuration
├── Dockerfile # Docker configuration
├── docker-compose.yml # Docker Compose setup
├── DOCKER.md # Docker documentation
└── README.md # This file
Key Dependencies
- FastAPI - Web framework for REST API mode
- MCP - Native Model Context Protocol support
- FastAPI-MCP - MCP integration for FastAPI
- httpx - Async HTTP client for external API calls
- BeautifulSoup4 - HTML parsing for documentation scraping
- Pydantic - Data validation and settings management
- uvicorn - ASGI server for FastAPI
Adding New Endpoints
- Define Pydantic models for request/response
- Add endpoint function with proper type hints
- Include comprehensive docstrings
- Add error handling with specific exceptions
- Update health check endpoint count
🐛 Error Handling
The server includes robust error handling for:
- Network failures - Graceful degradation when external APIs are unavailable
- Rate limiting - Handles GitHub API rate limits
- Invalid requests - Proper HTTP status codes and error messages
- Timeouts - Configurable request timeouts
📊 Health Monitoring
The /health endpoint provides:
- Service status
- Available endpoints count
- Data source URLs
- Current timestamp
- Updated documentation sections
🔒 Security Considerations
- Rate Limiting - Consider implementing rate limiting for production
- CORS - Configure CORS headers if needed for web access
- API Keys - Add GitHub token for higher API limits
- Input Validation - All inputs are validated using Pydantic
🚀 Production Deployment
For production use, consider:
- Caching - Add Redis/Memcached for response caching
- Rate Limiting - Implement request rate limiting
- Monitoring - Add application monitoring and logging
- Load Balancing - Use multiple instances behind a load balancer
- Database - Store frequently accessed data
- CI/CD - Set up automated deployment pipeline
🤝 Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🔗 Related Links
- LangChain Documentation
- LangChain GitHub
- FastAPI Documentation
- Model Context Protocol
- MCP Python SDK
🆘 Support
If you encounter any issues:
- Check the health endpoint for service status (FastAPI mode)
- Review Docker logs:
docker-compose logs - Check application logs in the
logs/directory - Ensure network connectivity to external APIs
- Verify all dependencies are installed correctly
- For MCP mode issues, check the MCP client configuration
Note: This server requires internet connectivity to fetch live data from LangChain's official sources. API rate limits may apply for GitHub API calls.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。