mcp-server
About
MCP server that allows you to get the latest documentation
Details
- Author
- egeokt
- Downloads
- 265
- Categories
- Other, Knowledge Base
Jump to
- Retrieves the latest documentation for LangChain, OpenAI, and LlamaIndex
- Built on the Model Context Protocol (MCP) with SDK 1.2.0+
- Requires Python 3.10 or higher and the uv package manager
- Designed for integration with MCP‑compatible clients like Claude Desktop
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
mcp-serverCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the uv package manager, create a virtual environment, add dependencies (mcp[cli], httpx), and create the server file main.py. Run the server with uv run main.py and connect it to a client such as Claude Desktop by editing the client’s configuration file.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp-server": {
"mcp-server-egeokt": {
"command": "uv",
"args": [
"init",
"mcp-server"
]
}
}
}
}
McpServers
{
"mcp-server-egeokt": {
"command": "uv",
"args": [
"init",
"mcp-server"
]
}
}
mcp-server
A simple MCP server that allows getting the latest documentation for some tools such as:
- langchain
- openai
- lama-index
System Requirements
- Python 3.10 or higher
- MCP SDK 1.2.0 or higher
- uv package manager
Getting Started
Installing uv Package Manager
On MacOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Make sure to restart your terminal afterwards to ensure that the uv command gets picked up.
Project Setup
1. Create and initialize the project:
```bash
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





