Skip to main content

Add your description here

Project description

belgie-mcp

[!WARNING] This package follows the current MCP Python SDK auth APIs. Expect small compatibility updates as the SDK evolves.

belgie-mcp connects Belgie's OAuth server to the MCP Python SDK. It builds MCP AuthSettings, provides a token verifier that understands both local OAuth provider state and HTTP introspection, and includes a helper for resolving the current user from the active access token.

Installation

uv add belgie[mcp] belgie[oauth]

[!NOTE] The belgie.mcp re-exports are only available when the mcp extra is installed. The quick-start also imports belgie.oauth.server, which requires the oauth extra.

Quick Start

Here is a complete setup for a single FastAPI app that hosts both Belgie OAuth and an MCP server:

Project Structure:

my-app/
├── main.py
└── ...

main.py:

from fastapi import FastAPI
from mcp.server.mcpserver import MCPServer

from belgie import Belgie
from belgie.mcp import Mcp, get_user_from_access_token
from belgie.oauth.server import OAuthResource, OAuthServer

app = FastAPI()

belgie = Belgie(
    settings=...,  # your BelgieSettings
    adapter=...,  # your database adapter
    database=...,  # async DB dependency
)

oauth_settings = OAuthServer(
    base_url="https://auth.local",
    prefix="/oauth",
    client_id="demo-client",
    client_secret="demo-secret",  # noqa: S106
    redirect_uris=["http://localhost:3030/callback"],
    default_scope="user",
    login_url="/login",
    resources=[OAuthResource(prefix="/mcp", scopes=["user"])],
)

_ = belgie.add_plugin(oauth_settings)
mcp_plugin = belgie.add_plugin(
    Mcp(
        oauth=oauth_settings,
        base_url="https://app.local",
    ),
)

mcp_server = MCPServer(
    name="Belgie MCP",
    instructions="MCP server protected by Belgie OAuth",
    token_verifier=mcp_plugin.token_verifier,
    auth=mcp_plugin.auth,
)

app.include_router(belgie.router)
app.mount(
    mcp_plugin.server_path,
    mcp_server.streamable_http_app(
        streamable_http_path="/",
    ),
)


@mcp_server.tool()
async def get_user_email() -> dict[str, str | None]:
    user = await get_user_from_access_token(belgie)
    return {
        "user_id": str(user.id) if user else None,
        "user_email": user.email if user else None,
    }

McpPlugin gives you the MCP auth settings, token verifier, and derived server_path. Your app owns the transport mounting and any streamable_http_app(...) options.

Notes

  • If the MCP server shares a host with Belgie, set base_url and let Mcp derive the resource URL from server_path.
  • If you pass a server_url directly, it takes precedence over base_url and server_path.
  • oauth_strict=True enables strict resource validation against the issued token audience.
  • get_user_from_access_token resolves the current user from a co-located OAuth provider first, then falls back to decoding a JWT sub claim.
  • The package is designed to work with the example in examples/mcp.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

belgie_mcp-0.12.1.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

belgie_mcp-0.12.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file belgie_mcp-0.12.1.tar.gz.

File metadata

  • Download URL: belgie_mcp-0.12.1.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for belgie_mcp-0.12.1.tar.gz
Algorithm Hash digest
SHA256 bc5e99238bbb01c2fa8c97c3ae1aceb602abe74c0da694ee8732be2d2938e911
MD5 3ac0791e1c24ba90a26eb70d8be032c0
BLAKE2b-256 a44560041e2a73b44d74d99b56d8c63847185a86e05d5f2d12bfe6ad339e68f7

See more details on using hashes here.

File details

Details for the file belgie_mcp-0.12.1-py3-none-any.whl.

File metadata

  • Download URL: belgie_mcp-0.12.1-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for belgie_mcp-0.12.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e4fbe46471491316ef0339112fed10d4b9d5183ae23a40d117496aac78adc8ab
MD5 254be570162ff487e91b7757c9483df4
BLAKE2b-256 d3251bf737b4f10e56ffde7c5b3b657a566d23a3ea1658bf9852670f95dbdb98

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page