https://github.com/inkeep/mcp-server-python
Inkeep MCP Server
https://github.com/inkeep/mcp-server-python
Last synced: 3 months ago
JSON representation
Inkeep MCP Server
- Host: GitHub
- URL: https://github.com/inkeep/mcp-server-python
- Owner: inkeep
- License: mit
- Created: 2025-03-13T02:02:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T07:07:09.000Z (about 1 year ago)
- Last Synced: 2025-03-13T08:20:52.737Z (about 1 year ago)
- Language: Python
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp - inkeep/mcp-server-python
- awesome-mcp-servers - Inkeep MCP Server - A Python-based MCP server that provides RAG search over your content using Inkeep, enabling AI assistants to retrieve and ground answers in proprietary documentation and data. ([Read more](/details/inkeep-mcp-server.md)) `rag` `documentation` `search` (Ai Integration Mcp Servers)
- awesome-mcp-zh - Inkeep
- awesome-mcp-servers - Inkeep - A RAG search server over your content powered by [Inkeep](https://inkeep.com). (Production-Ready Servers)
- awesome-mcp-servers - **mcp-server-python** - Inkeep MCP Server (Python-based) `python` `mcp` `server` `http` `git` `pip install git+https://github.com/inkeep/mcp-server-python` (🤖 AI/ML)
- Awesome-MCP-Servers-directory - Inkeep - RAG Search over your content powered by Inkeep (Search)
- Awesome-Official-MCP-Servers - Inkeep - server-python?style=social) | RAG Search over your content powered by [Inkeep](https://inkeep.com) | | (官方 MCP 服务器列表)
- awesome-mcp-servers - Inkeep - RAG Search over your content powered by [Inkeep](https://inkeep.com) (Official Servers)
- toolsdk-mcp-registry - ❌ inkeep-rag - based interactions. (python) (Knowledge & Memory / How to Submit)
- metorial-index - Inkeep MCP Server - Integrates documentation with a powerful API for efficient management and access. Facilitates the development of intelligent applications that seamlessly interact with documentation. (Document Processing)
- awesome-mcp-servers - Inkeep - Provides a Retrieval Augmented Generation (RAG) server for accessing product documentation via the Model Context Protocol (MCP) (Table of Contents / AI Services)
README
# mcp-server-python
Inkeep MCP Server powered by your docs and product content.
### Dependencies
- An account on [Inkeep](https://inkeep.com) to manage and provide the RAG
- [`uv`](https://github.com/astral-sh/uv) Python project manager
### Local Setup
```
git clone https://github.com/inkeep/mcp-server-python.git
cd mcp-server-python
uv venv
uv pip install -r pyproject.toml
```
Note the full path of the project, referred to as `` in a later step.
## Get an API key
1. Log in to the [Inkeep Dashboard](https://portal.inkeep.com)
2. Navigate to the **Projects** section and select your project
3. Open the **Integrations** tab
4. Click **Create Integration** and choose **API** from the options
5. Enter a Name for your new API integration.
6. Click on **Create**
7. A generated **API key** will appear that you can use to authenticate API requests.
We'll refer to this API key as the `` in later steps.
### Add to your MCP client
Follow the steps in [this](https://modelcontextprotocol.io/quickstart/user) guide to setup Claude Dekstop.
In your `claude_desktop_config.json` file, add the following entry to `mcpServers`.
```json claude_desktop_config.json
{
"mcpServers": {
"inkeep-mcp-server": {
"command": "uv",
"args": [
"--directory",
"",
"run",
"-m",
"inkeep_mcp_server"
],
"env": {
"INKEEP_API_BASE_URL": "https://api.inkeep.com/v1",
"INKEEP_API_KEY": "",
"INKEEP_API_MODEL": "inkeep-rag",
"INKEEP_MCP_TOOL_NAME": "search-product-content",
"INKEEP_MCP_TOOL_DESCRIPTION": "Retrieves product documentation about Inkeep. The query should be framed as a conversational question about Inkeep."
}
},
}
}
```
You may need to put the full path to the `uv` executable in the command field. You can get this by running `which uv` on MacOS/Linux or `where uv` on Windows.