Medullar MCP Server

by medullar

156 downloads
Not rated
GitHub

About

Medullar MCP Server is an MCP protocol server that retrieves a user’s Medullar Space data. It is built for developers and users who need to access their curated Medullar spaces through an MCP‑compatible client (e.g., Claude Desktop).

Details

Author
medullar
Downloads
156
Categories
Other

- Retrieves the user’s Medullar spaces via MCP protocol.
- Requires a Medullar JWT for authentication.
- Returns space name, UUID, and context.
- Supports .env file, shell variables, or mcp install -v.
- Built with Python 3.10+ and the uv package manager.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Medullar MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install Python 3.10+, the uv package manager, and dependencies. Create a .env file with your MEDULLAR_JWT token. Run in development mode with mcp dev server.py or install in Claude Desktop with mcp install server.py. For custom deployments, use python server.py or mcp run server.py.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "medullar mcp server": {
            "medullar-mcp-server": {
                "command": "uv",
                "args": [
                    "pip",
                    "install",
                    "-r",
                    "requirements.txt"
                ]
            }
        }
    }
}

McpServers

{
    "medullar-mcp-server": {
        "command": "uv",
        "args": [
            "pip",
            "install",
            "-r",
            "requirements.txt"
        ]
    }
}

Medullar MCP Server

A server for retrieving Medullar Space data using the MCP protocol.

Prerequisites

- Python 3.10 or higher
- uv package manager (recommended)
- A Medullar JWT token

Setup

1. Install dependencies using uv:

brew install uv
uv pip install -r requirements.txt

2. Create a .env file in the project root with your Medullar JWT:

MEDULLAR_JWT=your_jwt_token_here

Running Your Server

Development Mode

The fastest way to test and debug your server is with the MCP Inspector:

mcp dev server.py

Production Installation

Once your server is ready, install it in Claude Desktop:

mcp install server.py

Direct Execution

For advanced scenarios like custom deployments:

```bash
python server.py

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.