11# mcp-server-python
2- Inkeep MCP Server for your docs!
2+ Inkeep MCP Server powered by your docs and product content.
33
44### Dependencies
55
6- - An account on [ Inkeep] ( https://inkeep.com )
7- - [ ` uv ` ] ( https://github.com/astral-sh/uv )
6+ - An account on [ Inkeep] ( https://inkeep.com ) to manage and provide the RAG
7+ - [ ` uv ` ] ( https://github.com/astral-sh/uv ) Python project manager
88
9- ### Setup
9+ ### Local Setup
1010
1111```
1212git clone [email protected] :inkeep/mcp-server-python.git @@ -15,33 +15,42 @@ uv venv
1515uv pip install -r pyproject.toml
1616```
1717
18- You'll need these environment variables:
19- ```
20- INKEEP_API_BASE_URL=https://api.inkeep.com/v1
21- INKEEP_API_KEY=
22- INKEEP_API_MODEL=inkeep-rag-20250310
23- ```
24- To get an API key, go to the Inkeep Portal and create an API Integration.
18+ Note the full path of the project, referred to as ` <YOUR_INKEEP_MCP_SERVER_ABSOLUTE_PATH> ` in a later step.
2519
20+ ## Get an API key
2621
27- ### ` claude_desktop_config.json `
22+ 1 . Log in to the [ Inkeep Dashboard] ( https://portal.inkeep.com )
23+ 2 . Navigate to the ** Projects** section and select your project
24+ 3 . Open the ** Integrations** tab
25+ 4 . Click ** Create Integration** and choose ** API** from the options
26+ 5 . Enter a Name for your new API integration.
27+ 6 . Click on ** Create**
28+ 7 . A generated ** API key** will appear that you can use to authenticate API requests.
2829
29- ```
30+ We'll refer to this API key as the ` <YOUR_INKEEP_API_KEY> ` in later steps.
31+
32+ ### Add to your MCP client
33+
34+ Follow the steps in [ this] guide to setup Claude Dekstop.
35+
36+ In ` claude_desktop_config.json ` , add the following entry to ` mcpServers ` .
37+
38+ ``` json claude_desktop_config.json
3039{
3140 "mcpServers" : {
32- "your-docs-by- inkeep-mcp-server": {
41+ "inkeep-mcp-server" : {
3342 "command" : " uv" ,
3443 "args" : [
3544 " --directory" ,
36- "/ABSOLUTE/PATH/TO/PARENT/FOLDER/mcp-server-python ",
45+ " <YOUR_INKEEP_MCP_SERVER_ABSOLUTE_PATH> " ,
3746 " run" ,
3847 " -m" ,
3948 " inkeep_mcp_server"
4049 ],
4150 "env" : {
4251 "INKEEP_API_BASE_URL" : " https://api.inkeep.com/v1" ,
43- "INKEEP_API_KEY": "YOUR_INKEEP_API_KEY",
44- "INKEEP_API_MODEL": "inkeep-rag-20250310 "
52+ "INKEEP_API_KEY" : " < YOUR_INKEEP_API_KEY> " ,
53+ "INKEEP_API_MODEL" : " inkeep-rag"
4554 }
4655 },
4756 }
0 commit comments