docs/5-CONFIGURATION/mcp-integration.md
Open Notebook can be seamlessly integrated into your AI workflows using the Model Context Protocol (MCP), enabling direct access to your notebooks, sources, and chat functionality from AI assistants like Claude Desktop and VS Code extensions.
The Model Context Protocol is an open standard that allows AI applications to securely connect to external data sources and tools. With the Open Notebook MCP server, you can:
Install the MCP server (automatically from PyPI):
# No manual installation needed! Claude Desktop will use uvx to run it automatically
Configure Claude Desktop:
macOS/Linux: Edit ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"open-notebook": {
"command": "uvx",
"args": ["open-notebook-mcp"],
"env": {
"OPEN_NOTEBOOK_URL": "http://localhost:5055",
"OPEN_NOTEBOOK_PASSWORD": "your_password_here"
}
}
}
}
Windows: Edit %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"open-notebook": {
"command": "uvx",
"args": ["open-notebook-mcp"],
"env": {
"OPEN_NOTEBOOK_URL": "http://localhost:5055",
"OPEN_NOTEBOOK_PASSWORD": "your_password_here"
}
}
}
}
Restart Claude Desktop and start using your notebooks in conversations!
Add to your VS Code settings or .vscode/mcp.json:
{
"servers": {
"open-notebook": {
"command": "uvx",
"args": ["open-notebook-mcp"],
"env": {
"OPEN_NOTEBOOK_URL": "http://localhost:5055",
"OPEN_NOTEBOOK_PASSWORD": "your_password_here"
}
}
}
}
http://localhost:5055)If your Open Notebook instance is running on a remote server, update the URL accordingly:
"OPEN_NOTEBOOK_URL": "http://192.168.1.100:5055"
Or with a domain:
"OPEN_NOTEBOOK_URL": "https://notebook.yourdomain.com/api"
Once connected, you can ask Claude or your AI assistant to:
The MCP server provides full access to Open Notebook's capabilities, allowing you to manage your research seamlessly from within your AI assistant.
The Open Notebook MCP server exposes these capabilities:
The Open Notebook MCP server is developed and maintained by the Epochal team:
🔗 GitHub: Epochal-dev/open-notebook-mcp
Contributions, issues, and feature requests are welcome!
The Open Notebook MCP server is published to the official MCP Registry:
OPEN_NOTEBOOK_URL is correct and accessibleOPEN_NOTEBOOK_PASSWORD is set correctlyThe Open Notebook MCP server follows the standard MCP protocol and can be used with any MCP-compatible client. Check your client's documentation for configuration details.