mcp-server

mcp-server

An MCP server that integrates with LangChain and ChromaDB to provide documentation search for AI libraries and vector database management.

Category
访问服务器

README

MCP Server Project

This repository contains an implementation of a Model Context Protocol (MCP) server. This project demonstrates how to build and run a functional MCP server that can integrate with LLM clients like Claude Desktop.

Key Features

This MCP server provides a suite of tools focused on information retrieval and vector database management, primarily leveraging LangChain and ChromaDB:

  • Targeted Documentation Search:

    • Quickly search the official documentation for popular AI/ML libraries:
      • Langchain
      • OpenAI
      • LlamaIndex
    • Retrieves relevant text snippets directly from the documentation sites.
  • ChromaDB Vector Database Integration:

    • Setup: Create and initialize ChromaDB vector stores with your own text data and optional metadata.
    • Persistence: Option to persist databases to disk for later use or use in-memory stores.
    • Querying: Perform semantic searches on your ChromaDB instances to find relevant documents based on query similarity.
    • Demonstration: A built-in demo tool to showcase the setup and query capabilities with sample data.
  • Powered by LangChain:

    • Utilizes LangChain for core functionalities like document handling, embedding management (using OpenAI Embeddings by default), and vector store interactions.

System Requirements

  • Python 3.11 or higher (as specified in pyproject.toml)
  • uv package manager
  • Dependencies listed in pyproject.toml (e.g., mcp[cli], httpx, langchain)

Getting Started

1. Install uv Package Manager

If you don't have uv installed, you can install it using:

curl -LsSf https://astral.sh/uv/install.sh | sh

Restart your terminal after installation.

2. Project Setup

Clone this repository (if you haven't already) and navigate into the project directory:

# cd /path/to/your/mcp-server

Create a virtual environment and install dependencies:

uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install -r requirements.txt # Or use uv pip install -e . if setup.py or pyproject.toml is configured for editable install
# Based on your pyproject.toml, you might also directly use:
# uv add beautifulsoup4 httpx "mcp[cli]" langchain langchain-community langchain-core chromadb
# Or more simply if pyproject.toml is complete:
# uv sync

(Note: Ensure your pyproject.toml is complete or you have a requirements.txt for uv pip install -r requirements.txt. uv sync is often preferred if pyproject.toml defines all dependencies.)

3. Running the Server

To start the MCP server, run:

uv run main.py

The server will start and be ready to accept connections.

Connecting to Claude Desktop

To connect this MCP server to Claude Desktop:

  1. Ensure Claude Desktop is installed.

  2. Edit the Claude Desktop configuration file located at ~/Library/Application Support/Claude/claude_desktop_config.json (on macOS).

  3. Add or update the mcpServers section:

    {
        "mcpServers": {
            "mcp-server": { // You can choose any name
                "command": "/full/path/to/your/.venv/bin/uv", // Use absolute path to uv in your venv
                "args": [
                    "run",
                    "main.py"
                ],
                "dir": "/full/path/to/your/mcp-server" // Absolute path to this project directory
            }
        }
    }
    

    Important: Replace /full/path/to/your/... with the correct absolute paths on your system. Using the uv from your project's virtual environment is recommended.

  4. Restart Claude Desktop.

Acknowledgements

This project is largely based on the mcp-server-example generously provided by Alejandro AO. We have adapted and utilized significant portions of his original work to build this server. We extend our sincere gratitude to Alejandro for his excellent example and for making his code available to the community.

You can find Alejandro AO's original repository here: https://github.com/alejandro-ao/mcp-server-example.

License

This project is licensed under the MIT License. See the LICENSE file for more details (if one exists).

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选