René's URL Explorer Experiment


Title: Error & Mismatch in OAuth scope resolution between Claude.ai/MCP Python SDK and Inspector · Issue #1307 · modelcontextprotocol/python-sdk · GitHub

Open Graph Title: Error & Mismatch in OAuth scope resolution between Claude.ai/MCP Python SDK and Inspector · Issue #1307 · modelcontextprotocol/python-sdk

X Title: Error & Mismatch in OAuth scope resolution between Claude.ai/MCP Python SDK and Inspector · Issue #1307 · modelcontextprotocol/python-sdk

Description: Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this issue Description TLDR: The MCP Python S...

Open Graph Description: Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this ...

X Description: Initial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening t...

Opengraph URL: https://github.com/modelcontextprotocol/python-sdk/issues/1307

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Error \u0026 Mismatch in OAuth scope resolution between Claude.ai/MCP Python SDK and Inspector","articleBody":"### Initial Checks\n\n- [x] I confirm that I'm using the latest version of MCP Python SDK\n- [x] I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this issue\n\n### Description\n\n**TLDR:** The MCP Python SDK's OAuth flow and Claude.ai fetches scopes from the `.well-known/oauth-authorization-server` endpoint instead of the `.well-known/oauth-protected-resource` endpoint ([RFC-9728](https://datatracker.ietf.org/doc/html/rfc9728/)) causing Claude.ai connector authorization failures with MCP servers that have downscoped scoping permissions. \n\n_Working MCP Inspector Authorization Flow with correct scopes VS Failing Claude.ai connector with incorrect scopes_\n\n\u003cimg width=\"1046\" height=\"827\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/006ebdfa-9973-4dc7-8561-fe98beda8bdc\" /\u003e\n\n\u003cimg width=\"1005\" height=\"166\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/d3ee81af-62ba-419b-a9d4-093adc3c40d4\" /\u003e\n\nPer the [MCP Authorization spec](https://modelcontextprotocol.io/specification/draft/basic/authorization), the Claude client should start by fetching the (1) `.well-known/oauth-protected-resource endpoint` (per RFC-9728), which contains information about the authorization server and recommended scopes corresponding to that path. Currently, the MCP Python SDK only uses this endpoint to fetch the authorization server URL, but not the scopes. Instead, it fetches the scopes from the (2) `.well-known/oauth-authorization-server` metadata. In downscoped cases, this causes Claude to request incorrect scopes rather than the resource-specific scopes, resulting in `access_denied` during the auth callback stage.\n\nI noticed there is a discrepancy in this logic between the Python SDK implementation and the MCP Inspector Authorization flow walkthrough. The MCP Inspector correctly prioritizes scopes from the oauth-protected-resource metadata, falling back to the authorization server metadata only if no scopes are defined:\n```\n/**\n * Discovers OAuth scopes from server metadata, with preference for resource metadata scopes\n * @param serverUrl - The MCP server URL\n * @param resourceMetadata - Optional resource metadata containing preferred scopes\n * @returns Promise resolving to space-separated scope string or undefined\n */\nexport const discoverScopes = async (\n  serverUrl: string,\n  resourceMetadata?: OAuthProtectedResourceMetadata,\n): Promise\u003cstring | undefined\u003e =\u003e {\n  try {\n    const metadata = await discoverAuthorizationServerMetadata(\n      new URL(\"/\", serverUrl),\n    );\n\n    // Prefer resource metadata scopes, but fall back to OAuth metadata if empty\n    const resourceScopes = resourceMetadata?.scopes_supported;\n    const oauthScopes = metadata?.scopes_supported;\n\n    const scopesSupported =\n      resourceScopes \u0026\u0026 resourceScopes.length \u003e 0\n        ? resourceScopes\n        : oauthScopes;\n\n    return scopesSupported \u0026\u0026 scopesSupported.length \u003e 0\n      ? scopesSupported.join(\" \")\n      : undefined;\n  } catch (error) {\n    console.debug(\"OAuth scope discovery failed:\", error);\n    return undefined;\n  }\n};\n```\n\n**HOW TO REPRODUCE**\nI’ve validated this by updating the scopes being requested to the `/authorize` endpoint from Claude. \nI have set up an OAuth application that has a limited set of scopes, example:\n```\n\"scopes\": [\n        \"mcp.functions\",\n        \"offline_access\"\n    ],\n```\n\n_Failing flow_ (where scopes are retrieved from `.well-known/oauth-authorization-server` endpoint:\n```\nGET /oidc/v1/authorize?response_type=code\u0026client_id=910a86cd-07e2...\n**\u0026scope=all-apis+email+offline_access+openid+profile+sql**\n```\nCallback response looks something like:\n```\nhttps://claude.ai/api/mcp/auth_callback?error=access_denied\u0026error_description=Scopes+%27email+openid+profile%27+are+not+assigned+to+the+client\n```\n\nI then resubmitted the authorize request, but this time overrided the `scope` values to match that needed by our OAuth application (this follows the behavior in MCP Inspecotr):\n```\nGET /oidc/v1/authorize?response_type=code\u0026client_id=910a86cd-07e2...\n**\u0026scope=mcp.functions**\n```\nCallback response successfully returns an authorization code ✅ \n```\nhttps://claude.ai/api/mcp/auth_callback?code=dcod...\n```\n\nIn my setup, the first url (1) `.well-known/oauth-protected-resource endpoint` contains the proper set of scopes we need (in the `scopes_supported` field) while the second (2) `.well-known/oauth-authorization-server` endpoint advertises the list of all available scopes, but not for our particular resource. \n\n**THE ASK:**\nUpdate the scope requesting logic to be consistent with that in the MCP Inspector so the proper scopes are obtained during the authorization process. Otherwise, downscoping will not work properly with Claude connectors for MCP servers who rely on OAuth App connections for authentication/authorization.  This may look like: \n\t1.\tStore and apply scopes_supported from `.well-known/oauth-protected-resource` to the `authorize` endpoint.\n\t2.\tOnly fall back to `.well-known/oauth-authorization-server` if no scopes are present in the resource metadata.\n\n### Example Code\n\n```Python\n# From Python SDK in src/mcp/client/auth.py - we currently store authorization server information from the oauth protected resource endpoint but that's it:\n\nasync def _handle_protected_resource_response(self, response: httpx.Response) -\u003e None:\n    if response.status_code == 200:\n        content = await response.aread()\n        metadata = ProtectedResourceMetadata.model_validate_json(content)\n        self.context.protected_resource_metadata = metadata\n        if metadata.authorization_servers:\n            self.context.auth_server_url = str(metadata.authorization_servers[0])\n\n# Notice how there is no `scopes_supported` retrieved here.\n# Later, scopes are instead pulled from the authorization server metadata:\n\nasync def _handle_oauth_metadata_response(self, response: httpx.Response) -\u003e None:\n    content = await response.aread()\n    metadata = OAuthMetadata.model_validate_json(content)\n    self.context.oauth_metadata = metadata\n    if self.context.client_metadata.scope is None and metadata.scopes_supported is not None:\n        self.context.client_metadata.scope = \" \".join(metadata.scopes_supported)\n\n\n# Example Tentative Fix where we fetch scopes from the protected resource response:\n\n async def _handle_protected_resource_response(self, response: httpx.Response) -\u003e None:\n        \"\"\"Handle discovery response.\"\"\"\n        if response.status_code == 200:\n            try:\n                content = await response.aread()\n                metadata = ProtectedResourceMetadata.model_validate_json(content)\n                self.context.protected_resource_metadata = metadata\n                if metadata.authorization_servers:\n                    self.context.auth_server_url = str(metadata.authorization_servers[0])\n                \n                # Apply scopes from protected resource metadata if available\n                if (metadata.scopes_supported is not None):\n                    self.context.client_metadata.scope = \" \".join(metadata.scopes_supported)\n\n\n\n# Current logic from MCP Inspector in which authorization flow works:\n\n/**\n * Discovers OAuth scopes from server metadata, with preference for resource metadata scopes\n * @param serverUrl - The MCP server URL\n * @param resourceMetadata - Optional resource metadata containing preferred scopes\n * @returns Promise resolving to space-separated scope string or undefined\n */\nexport const discoverScopes = async (\n  serverUrl: string,\n  resourceMetadata?: OAuthProtectedResourceMetadata,\n): Promise\u003cstring | undefined\u003e =\u003e {\n  try {\n    const metadata = await discoverAuthorizationServerMetadata(\n      new URL(\"/\", serverUrl),\n    );\n\n    // Prefer resource metadata scopes, but fall back to OAuth metadata if empty\n    const resourceScopes = resourceMetadata?.scopes_supported;\n    const oauthScopes = metadata?.scopes_supported;\n\n    const scopesSupported =\n      resourceScopes \u0026\u0026 resourceScopes.length \u003e 0\n        ? resourceScopes\n        : oauthScopes;\n\n    return scopesSupported \u0026\u0026 scopesSupported.length \u003e 0\n      ? scopesSupported.join(\" \")\n      : undefined;\n  } catch (error) {\n    console.debug(\"OAuth scope discovery failed:\", error);\n    return undefined;\n  }\n};\n```\n\n### Python \u0026 MCP Python SDK\n\n```Text\nUsing Claude.ai site on 08/25/25\nMCP Python SDK: v1.13.1\n```","author":{"url":"https://github.com/jennsun","@type":"Person","name":"jennsun"},"datePublished":"2025-08-26T03:00:35.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/1307/python-sdk/issues/1307"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1f1e768b-4f25-f641-a399-2f828f64b918
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD160:3E14BD:262525:327AE6:6A59565D
html-safe-nonced2c3d410312123f5b2bb7544dee3d4b91eabb6f6ed47a878c24d3212436f7831
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEMTYwOjNFMTRCRDoyNjI1MjU6MzI3QUU2OjZBNTk1NjVEIiwidmlzaXRvcl9pZCI6IjYzMTk0MTAzNzYyNTA4NDA2NjkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacdc6c339839bce8b62aa85042325f15d45ac03236c7e8a89dbf94f79dc2035755
hovercard-subject-tagissue:3353881731
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/modelcontextprotocol/python-sdk/1307/issue_layout
twitter:imagehttps://opengraph.githubassets.com/70861e6f91fc905b786377384b1ae3c925585807ebc16b1f560553743dc1c7d9/modelcontextprotocol/python-sdk/issues/1307
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/70861e6f91fc905b786377384b1ae3c925585807ebc16b1f560553743dc1c7d9/modelcontextprotocol/python-sdk/issues/1307
og:image:altInitial Checks I confirm that I'm using the latest version of MCP Python SDK I confirm that I searched for my issue in https://github.com/modelcontextprotocol/python-sdk/issues before opening this ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejennsun
hostnamegithub.com
expected-hostnamegithub.com
Nonea540949572872b935b393b36db38922db390ae71c859537d741b8f3eb7e545b5
turbo-cache-controlno-preview
go-importgithub.com/modelcontextprotocol/python-sdk git https://github.com/modelcontextprotocol/python-sdk.git
octolytics-dimension-user_id182288589
octolytics-dimension-user_loginmodelcontextprotocol
octolytics-dimension-repository_id862584018
octolytics-dimension-repository_nwomodelcontextprotocol/python-sdk
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id862584018
octolytics-dimension-repository_network_root_nwomodelcontextprotocol/python-sdk
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release5f35ad1fb16417d6e6774c537b62a2fe92222907
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/python-sdk/issues/1307#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2F1307
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2F1307
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=modelcontextprotocol%2Fpython-sdk
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/1307
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/1307
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/1307
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/issues/1307
modelcontextprotocol https://github.com/modelcontextprotocol
python-sdkhttps://github.com/modelcontextprotocol/python-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Fork 3.7k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Star 23.6k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Code https://github.com/modelcontextprotocol/python-sdk
Issues 255 https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests 301 https://github.com/modelcontextprotocol/python-sdk/pulls
Actions https://github.com/modelcontextprotocol/python-sdk/actions
Projects https://github.com/modelcontextprotocol/python-sdk/projects
Models https://github.com/modelcontextprotocol/python-sdk/models
Security and quality 6 https://github.com/modelcontextprotocol/python-sdk/security
Insights https://github.com/modelcontextprotocol/python-sdk/pulse
Code https://github.com/modelcontextprotocol/python-sdk
Issues https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests https://github.com/modelcontextprotocol/python-sdk/pulls
Actions https://github.com/modelcontextprotocol/python-sdk/actions
Projects https://github.com/modelcontextprotocol/python-sdk/projects
Models https://github.com/modelcontextprotocol/python-sdk/models
Security and quality https://github.com/modelcontextprotocol/python-sdk/security
Insights https://github.com/modelcontextprotocol/python-sdk/pulse
#2999https://github.com/modelcontextprotocol/python-sdk/pull/2999
Error & Mismatch in OAuth scope resolution between Claude.ai/MCP Python SDK and Inspectorhttps://github.com/modelcontextprotocol/python-sdk/issues/1307#top
#2999https://github.com/modelcontextprotocol/python-sdk/pull/2999
authIssues and PRs related to Authentication / OAuthhttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22auth%22
bugSomething isn't workinghttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22bug%22
ready for workEnough information for someone to start working onhttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22ready%20for%20work%22
https://github.com/jennsun
jennsunhttps://github.com/jennsun
on Aug 26, 2025https://github.com/modelcontextprotocol/python-sdk/issues/1307#issue-3353881731
https://github.com/modelcontextprotocol/python-sdk/issueshttps://github.com/modelcontextprotocol/python-sdk/issues
RFC-9728https://datatracker.ietf.org/doc/html/rfc9728/
https://private-user-images.githubusercontent.com/26675662/481883719-006ebdfa-9973-4dc7-8561-fe98beda8bdc.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODQyNDAwMDksIm5iZiI6MTc4NDIzOTcwOSwicGF0aCI6Ii8yNjY3NTY2Mi80ODE4ODM3MTktMDA2ZWJkZmEtOTk3My00ZGM3LTg1NjEtZmU5OGJlZGE4YmRjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzE2VDIyMDgyOVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWY2NDI5MjZkYmM2ZmFlNzIzM2IxMzQ0ZTkwMzA4OWY1YjBiYjdlYTYxOTE2N2VkNDE2OThlMzFhOTQ4MzBkNzgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.tLbS7Z0EAkJjlRnr3JRlqptH9ygNyW2jCWJgZoSEHMk
https://private-user-images.githubusercontent.com/26675662/481883963-d3ee81af-62ba-419b-a9d4-093adc3c40d4.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODQyNDAwMDksIm5iZiI6MTc4NDIzOTcwOSwicGF0aCI6Ii8yNjY3NTY2Mi80ODE4ODM5NjMtZDNlZTgxYWYtNjJiYS00MTliLWE5ZDQtMDkzYWRjM2M0MGQ0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTYlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzE2VDIyMDgyOVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWFiNzAyZjEyMjhmYjYwNDU0NmRmY2NlNzIzMDZmZTc0NTc0YTg4NzcyMTE2OWI3MzFkNGM0YTA4NzcyYTY1MjMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.TbKMxZuRju0UVrXNZ5m_38Ni5ZdcNMGFFiL9SMG7ZHw
MCP Authorization spechttps://modelcontextprotocol.io/specification/draft/basic/authorization
authIssues and PRs related to Authentication / OAuthhttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22auth%22
bugSomething isn't workinghttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22bug%22
ready for workEnough information for someone to start working onhttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22ready%20for%20work%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.