Enable Programmatic Authentication for MCP Servers Without Browser Redirects
Nobody has claimed this yet.
Assessment
- Difficulty
- 5/5
- Estimated time
- Over a week
- Newbie friendliness
- 25/100
- Issue type
- Feature
- Clarity
- Needs clarification
- Activity status
- Stale
- Domain
- api, authentication, security
Research direction
No implementation files, tests, or entry points are named. Start by reading the linked MCP Authorization Specification, RFC8414, and OAuth 2.0 for First-Party Applications draft; done would require identifying the target repository and agreeing how the optional metadata endpoint and challenge flow should be specified or implemented.
Written by the indexing model from the issue text.
Description
Problem Definition
Concrete Implementation Challenge: We are building a voice-based healthcare agent that needs to authenticate patients over phone calls. The current MCP OAuth specification requires browser-based redirects, which is impossible in a voice channel.
Validation: This affects any MCP implementation where:
- Users interact through voice (IVR systems, voice assistants)
- CLI tools need authentication without launching browsers
- Embedded devices without browser capabilities
Current Blocker
MCP specification mandates OAuth 2.1 with browser redirects:
Client -> Redirect to Authorization Endpoint -> Browser -> Callback
This flow cannot work when:
- No browser is available (phone calls)
- Browser interruption breaks user experience (CLI tools)
Minimal Proposed Change
Allow MCP servers to optionally support programmatic authentication by adopting the OAuth 2.0 for First-Party Applications specification:
- Add an optional field to Authorization Server Metadata (RFC8414):
{
"issuer": "https://mcp.example.com",
"authorization_endpoint": "https://mcp.example.com/authorize",
"authorization_challenge_endpoint": "https://mcp.example.com/authorize/challenge", // NEW
"token_endpoint": "https://mcp.example.com/token",
// ... other standard fields
}
- When
authorization_challenge_endpointis present, clients can use the challenge/response flow as defined in the First-Party Apps draft.
Why This Is Minimal
- Single metadata addition: Just one optional endpoint in server metadata
- Existing specification: Follows an established IETF draft rather than inventing new patterns
- Backwards compatible: Only active when server advertises the endpoint
- No protocol changes: Still uses authorization codes and standard token exchange
Security Considerations
Per the First-Party Apps specification:
- MUST only be used by first-party applications
- Authorization servers SHOULD restrict this endpoint to specific trusted client IDs
- All security requirements from Section 9 of the draft apply
Use Case Example
A voice agent could authenticate callers using knowledge-based authentication:
- Collect identity information (name, DOB, SSN last 4)
- POST to the challenge endpoint
- Receive authorization code
- Exchange for access token using standard flow
- Access MCP resources with the token
Alternative Considered
We considered using custom extensions, but that would fragment the ecosystem. Adopting an existing IETF draft enables broad use cases while maintaining compatibility.
Prototype
tell me which repo(s), if any, you want a protoytype created in, and I can make a PR.
References
- OAuth 2.0 for First-Party Applications Draft
- MCP Authorization Specification
- OAuth 2.0 Authorization Server Metadata (RFC8414)
Co authored by gregorySDTaylor and claude-sonnet-4
- Dominant language
- MDX
- Stars
- 164
- Forks
- 54
- PR merge metrics
- No merged PRs in 30d
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from modelcontextprotocol/ext-auth
-
enhancement
Difficulty 5/5 Over a week Newbie friendliness 25/100
-
DEBUG Openbug
Difficulty 5/5 Over a week Newbie friendliness 10/100
-
enhancement
Difficulty 5/5 Over a week Newbie friendliness 30/100
modelcontextprotocol/ext-auth#26 · 1 comment ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 35/100
-
enhancement
Difficulty 5/5 Over a week Newbie friendliness 25/100
modelcontextprotocol/ext-auth#21 · 1 comment ·
All issues in modelcontextprotocol/ext-auth
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
use-agent-os/agent-os#3312 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 85/100
-
needs-acceptance wg/data-plane-networking
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
vllm-project/semantic-router#4024 · 1 comment ·
-
bug good first issue
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
amponce/archive-movie-browser#165 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100