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 - Save knowle
Add this skill
npx mdskills install obris-dev/obris-mcpWell-documented knowledge management integration with clear setup and practical examples
1# Obris MCP Server23<!-- mcp-name: ai.obris/mcp -->45An [MCP](https://modelcontextprotocol.io/) server that brings your curated [Obris](https://obris.ai) knowledge into any AI conversation. Use the [Chrome extension](https://chromewebstore.google.com/detail/obris-%E2%80%93-save-key-content/kkkiblfabiopcmoghfcjffiobjlppfdp) or upload directly to save knowledge to dedicated topics so you never start another AI chat from zero again.67## Features89- **List topics** — Browse all your Obris topics to find the one you need10- **Pull in knowledge** — Retrieve saved bookmarks, highlights, and notes as context for any conversation11- **Save knowledge** — Capture takeaways and notes from conversations to reuse in future chats1213## Setup1415### 1. Get your API key1617Generate an API key from your [Obris dashboard](https://app.obris.ai/api-keys). Don't have an account? [Sign up](https://app.obris.ai/signup).1819### 2. Install and configure2021#### Claude Desktop2223Add your API key to your shell profile (`~/.zshrc`, `~/.zprofile`, or `~/.bash_profile`):2425```bash26export OBRIS_API_KEY=your_api_key_here27```2829Then reload your shell:3031```bash32source ~/.zshrc33```3435Open Claude Desktop settings → **Developer** → **Edit Config**, and add the following to `claude_desktop_config.json`:3637```json38{39 "mcpServers": {40 "obris": {41 "command": "/full/path/to/uvx",42 "args": ["obris-mcp"],43 "env": {44 "OBRIS_API_KEY": "$OBRIS_API_KEY"45 }46 }47 }48}49```5051> Run `which uvx` to get the full path for `"command"`.5253Restart Claude Desktop to pick up the changes.5455#### Claude Code5657```bash58claude mcp add Obris -e OBRIS_API_KEY=$OBRIS_API_KEY --transport stdio -- uvx obris-mcp59```6061Start a new conversation and type `/mcp` to verify the Obris server is connected.6263#### Gemini CLI6465```bash66gemini mcp add -e OBRIS_API_KEY=$OBRIS_API_KEY --transport stdio Obris uvx obris-mcp67```6869Start a new Gemini session and run `/mcp` to verify the Obris server is connected.7071#### Other MCP clients7273See the [local MCP setup guide](https://docs.obris.ai/guides/local-mcp) for more options.7475## Tools7677| Tool | Description |78|------|-------------|79| `list_topics` | List all your Obris topics |80| `get_topic_knowledge` | Get saved knowledge for a specific topic |81| `create_topic` | Create a new topic to organize knowledge |82| `add_knowledge` | Save text knowledge to a topic |8384## Examples8586### Example 1: Listing your topics8788**Prompt:** "What Obris topics do I have?"8990The `list_topics` tool is called and returns:9192```93Topics:94- Brand Guidelines (id: 01JEXAMPLE00001)95- Marketing Images (id: 01JEXAMPLE00002)96- Shoe Dog Highlights (id: 01JEXAMPLE00003)97- Favorite Cocktails (id: 01JEXAMPLE00004)98```99100### Example 2: Getting knowledge for a topic101102**Prompt:** "What are repeated lessons in my Shoe Dog highlights? Cite the original highlight in your answer."103104The `list_topics` tool finds the topic, then `get_topic_knowledge` retrieves your saved highlights:105106```107### On Starting Out108"I'd tell men and women in their midtwenties not to settle109for a job or a profession or even a career. Seek a calling."110---111### On Selling112"Don't tell people about your brand. Tell them about your113belief. The ones who share it will find you."114```115116### Example 3: Using knowledge to make a decision117118**Prompt:** "Here's a cocktail menu. Based on my saved favorites, what should I order?"119120The `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.121122### Example 4: Combining multiple topics123124**Prompt:** "Pull in my brand guidelines and marketing images. Help me design a new hero section with more of an Apple-style design approach."125126The 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.127128## Development129130```bash131git clone https://github.com/obris-dev/obris-mcp.git132cd obris-mcp133uv sync134```135136To run locally via Claude Desktop, add to your `claude_desktop_config.json`:137138```json139{140 "mcpServers": {141 "obris": {142 "command": "/full/path/to/uv",143 "args": [144 "--directory",145 "/path/to/obris-mcp/src/obris_mcp",146 "run",147 "main.py"148 ],149 "env": {150 "OBRIS_API_KEY": "$OBRIS_API_KEY"151 }152 }153 }154}155```156157> Run `which uv` to get the full path for `"command"`.158159### Make commands160161```bash162make publish # build and publish to PyPI163make pack # pack for MCP registry (runs version check first)164make pack-and-publish # pack, publish to PyPI, and publish to MCP registries165make sync-version # sync manifest.json and server.json to pyproject.toml version166make check-version # verify all version files match and compare to live server167```168169## Privacy Policy170171This 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.172173For the full privacy policy, see [obris.ai/privacy](https://obris.ai/privacy).174175## Support176177For 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).178179## License180181MIT182
Full transparency — inspect the skill content before installing.