Skip to content

Fulcra MCP Server

Fulcra is excited to make your Context available to you via Model Context Protocol. MCP is an emerging standard for providing information and context to LLMs and agentic frameworks built around them. Context by Fulcra is a platform built for you to gather, analyze, and (optionally) share the personal data that can make you better.

Fulcra's MCP server is a public remote server using the Streamable HTTP transport and using OAuth2 authorization. Though the server is public and free, each connection is isolated to its own session, so your data is only available to you.

The code to the server is open source and available at https://github.com/fulcradynamics/fulcra-context-mcp.

MCP Server Connection Details

To connect to the MCP server, use Streamable HTTP transport and https://mcp.fulcradynamics.com/mcp as the URL. (Note that if you go to this URL directly with a browser, you'll get an authorization warning; this is normal.)

When your MCP client connects to the server, a browser window will pop up to for you to log in with Fulcra, if you aren't already.

To use a client that that only support stdio, use a proxy such as mcp-remote. Here's an example config for Claude for Desktop (claude_desktop_config.json):

{
    "mcpServers": {
        "fulcra_context": {
            "command": "npx",
            "args": [
                "-y",
                "mcp-remote",
                "https://mcp.fulcradynamics.com/mcp"
            ]
        }
    }
}

Running the MCP Server Locally

The server may also be cloned and run from the official repo, or run directly using uvx using the fulcra-context-mcp PyPI module. This may come in handy in cases where a proxy proves unreliable.

Here's an example config running fulcra-context-mcp as a stdio-transport local server:

{
    "mcpServers": {
        "fulcra_context": {
            "command": "uvx",
            "args": [
                "fulcra-context-mcp@latest"
            ]
        }
    }
}

Compatibility

Some other clients we've tested with the server are codename goose (using the stdio proxy), Windsurf, and VS Code.

Issues

If you get stuck, drop us an email at support@fulcradynamics.com or hit us up directly on our discord.

Enjoy!