Overview
The mcp-server-python is a server implementation for Inkeep that allows users to manage their documents and integrate with the Inkeep API.
To use mcp-server-python, clone the repository from GitHub, set up the environment, and configure the necessary API keys and settings in the claude_desktop_config.json file.
- Integration with Inkeep API for document management - Easy setup with dependencies managed through
uv- Customizable server configuration through JSON files
- Managing documents for projects using Inkeep.
- Automating document workflows with the Inkeep API.
- Setting up a local server for testing and development purposes.
Add to your AI client
Use these steps to connect mcp-server-python in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-python-inkeep": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-python-inkeep"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-python-inkeep": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-python-inkeep"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-python-inkeep": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-python-inkeep"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-python-inkeep": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-python-inkeep"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-python-inkeep": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-python-inkeep"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-python-inkeep": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-python-inkeep"
]
}
}
}FAQ
What are the dependencies for mcp-server-python?
You need an Inkeep account and the `uv` package to run the server.
How do I get an API key?
You can create an API Integration in the Inkeep Portal to obtain your API key.
Is there a license for mcp-server-python?
Yes, it is licensed under the MIT license.