An MCP server that brings your curated Obris knowledge into any AI conversation. Use the Chrome extension or upload directly to save knowledge to dedicated topics so you never start another AI chat from zero again.
- List topics — Browse all your Obris topics to find the one you need
- Pull in knowledge — Retrieve saved bookmarks, highlights, and notes as context for any conversation
- Read-only — The server only reads your data; it never modifies anything in your Obris account
Generate an API key from your Obris dashboard. Don't have an account? Sign up.
Add your API key to your shell profile (~/.zshrc, ~/.zprofile, or ~/.bash_profile):
export OBRIS_API_KEY=your_api_key_hereThen reload your shell:
source ~/.zshrcOpen Claude Desktop settings → Developer → Edit Config, and add the following to claude_desktop_config.json:
{
"mcpServers": {
"obris": {
"command": "/full/path/to/uvx",
"args": ["obris-mcp"],
"env": {
"OBRIS_API_KEY": "$OBRIS_API_KEY"
}
}
}
}Run
which uvxto get the full path for"command".
Restart Claude Desktop to pick up the changes.
claude mcp add Obris -e OBRIS_API_KEY=$OBRIS_API_KEY --transport stdio -- uvx obris-mcpStart a new conversation and type /mcp to verify the Obris server is connected.
gemini mcp add -e OBRIS_API_KEY=$OBRIS_API_KEY --transport stdio Obris uvx obris-mcpStart a new Gemini session and run /mcp to verify the Obris server is connected.
See the local MCP setup guide for more options.
| Tool | Description |
|---|---|
list_topics |
List all your Obris topics |
get_topic_knowledge |
Get saved knowledge for a specific topic |
Prompt: "What Obris topics do I have?"
The list_topics tool is called and returns:
Topics:
- Brand Guidelines (id: 01JEXAMPLE00001)
- Marketing Images (id: 01JEXAMPLE00002)
- Shoe Dog Highlights (id: 01JEXAMPLE00003)
- Favorite Cocktails (id: 01JEXAMPLE00004)
Prompt: "What are repeated lessons in my Shoe Dog highlights? Cite the original highlight in your answer."
The list_topics tool finds the topic, then get_topic_knowledge retrieves your saved highlights:
### On Starting Out
"I'd tell men and women in their midtwenties not to settle
for a job or a profession or even a career. Seek a calling."
---
### On Selling
"Don't tell people about your brand. Tell them about your
belief. The ones who share it will find you."
Prompt: "Here's a cocktail menu. Based on my saved favorites, what should I order?"
The list_topics tool finds Favorite Cocktails, then get_topic_knowledge retrieves your saved recipes and tasting notes. The AI cross-references the menu with your preferences to recommend a drink you'll actually like.
Prompt: "Pull in my brand guidelines and marketing images. Help me design a new hero section with more of an Apple-style design approach."
The AI retrieves knowledge from both topics — your color palette, typography rules, tone of voice, and previous marketing visuals — then uses that context to generate a hero section concept that stays on-brand while incorporating the clean, minimal aesthetic you're going for.
git clone https://github.com/obris-dev/obris-mcp.git
cd obris-mcp
uv syncTo run locally via Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"obris": {
"command": "/full/path/to/uv",
"args": [
"--directory",
"/path/to/obris-mcp/src/obris_mcp",
"run",
"main.py"
],
"env": {
"OBRIS_API_KEY": "$OBRIS_API_KEY"
}
}
}
}Run
which uvto get the full path for"command".
## Privacy Policy
This server sends your Obris API key to the Obris API (`api.obris.ai`) to authenticate requests. It retrieves topic and knowledge data from your account. The server itself does not store any data locally or send it to any third party, however your AI client may cache or retain retrieved content according to its own data policies.
For the full privacy policy, see [obris.ai/privacy](https://obris.ai/privacy).
## Support
For issues or questions, contact [support@obris.ai](mailto:support@obris.ai) or open an issue on [GitHub](https://github.com/obris-dev/obris-mcp/issues).
## License
MIT