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).
AuthMixin Mixin for drivers -- 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.3.2.tar.gz (13.0 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.3.2-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mcs_auth-0.3.2.tar.gz
  • Upload date:
  • Size: 13.0 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.3.2.tar.gz
Algorithm Hash digest
SHA256 75df47cb677762d3b7753272ae2004d83ee7e4cfbd044d19807cf1bc16f06fcd
MD5 a97754392165710f018aa7053e42b416
BLAKE2b-256 648ae38fe051131ccbc620bc7c04b621f91ae7441ee765bacedb527baaa14574

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mcs_auth-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 12.1 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.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a34f373ca2beb55f8395e6e2da7e2a709c90de3fbc13ae40c2644bb8ba119b34
MD5 d29a264002d6c6d333c542ad7cebb940
BLAKE2b-256 a43be08e49024590b5c5500715b5c4f7657e30af52e72b87dae7e3ee9bebda68

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