Skip to main content

Credential provider abstraction for the Model Context Standard.

Project description

mcs-auth

The authentication backbone for the Model Context Standard (MCS).

Stop wiring OAuth flows, API keys, and token refresh logic into every agent you build. mcs-auth defines a universal CredentialProvider protocol -- one interface, any credential source. Your agent code never changes, no matter how authentication works behind the scenes.

Installation

pip install mcs-auth

What's inside

Component What it does
CredentialProvider Protocol: get_token(scope) -> str. Any provider satisfies it.
AuthPort Protocol for auth transport adapters (OAuth, LinkAuth, Device Flow, ...).
AuthChallenge Exception raised when user interaction is needed (URL + code).
AuthDecorator Decorator wrapping a ToolDriver -- catches auth challenges at the tool execution boundary.
StaticProvider Simple provider: tokens from a dict or environment variables.

Quick start

from mcs.auth.static import StaticProvider

# From a dict
provider = StaticProvider(tokens={"gmail": "ya29.xxx", "openai": "sk-xxx"})
token = provider.get_token("gmail")

# From environment variables (MCS_TOKEN_GMAIL, MCS_TOKEN_OPENAI, ...)
provider = StaticProvider()
token = provider.get_token("gmail")

The big picture

Your agent calls provider.get_token("gmail"). Where that token comes from is none of the agent's business:

CredentialProvider.get_token("gmail")
  |
  +-- StaticProvider          (env vars, dicts)
  +-- Auth0Provider           (Token Vault exchange)  --> mcs-auth-auth0
  +-- OAuthProvider           (browser login)         --> mcs-auth-oauth
  +-- LinkAuthProvider        (device-flow broker)    --> mcs-auth-linkauth

Swap providers without touching agent code. Add new services without new OAuth integrations. That's the power of a protocol-based auth layer.

Links

License

Apache-2.0

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

mcs_auth-0.4.0.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

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

mcs_auth-0.4.0-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file mcs_auth-0.4.0.tar.gz.

File metadata

  • Download URL: mcs_auth-0.4.0.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for mcs_auth-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5f8a1883df5dc531773f90af3afc12ed12be4cd0f519280c88ca35f10ed25a7c
MD5 5e44adcaf150cec1429f202b499a8ca7
BLAKE2b-256 e4fe59372a6972246d122c97b9a26c1f75c8516abf72907f916919f985a3110d

See more details on using hashes here.

File details

Details for the file mcs_auth-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: mcs_auth-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for mcs_auth-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ea9fba45e14827155335675f6fa6e69bf46b63d2cb2bce262eade669c7abddbd
MD5 9ad427c65d15143b5c30cd8d98dd3e5e
BLAKE2b-256 cc675e69132efcd2dad46cd5a6b7e7ba697de1bc2766a72a89f11dc9c1f4a1c7

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