René's URL Explorer Experiment


Title: Tool name validation accepts a trailing newline (regex uses `$` instead of `\Z`) · Issue #3084 · modelcontextprotocol/python-sdk · GitHub

Open Graph Title: Tool name validation accepts a trailing newline (regex uses `$` instead of `\Z`) · Issue #3084 · modelcontextprotocol/python-sdk

X Title: Tool name validation accepts a trailing newline (regex uses `$` instead of `\Z`) · Issue #3084 · modelcontextprotocol/python-sdk

Description: Describe the bug TOOL_NAME_REGEX in src/mcp/shared/tool_name_validation.py is end-anchored with $: TOOL_NAME_REGEX = re.compile(r"^[A-Za-z0-9._-]{1,128}$") In Python's default (non-MULTILINE) mode, $ matches at end-of-string or immediate...

Open Graph Description: Describe the bug TOOL_NAME_REGEX in src/mcp/shared/tool_name_validation.py is end-anchored with $: TOOL_NAME_REGEX = re.compile(r"^[A-Za-z0-9._-]{1,128}$") In Python's default (non-MULTILINE) mode,...

X Description: Describe the bug TOOL_NAME_REGEX in src/mcp/shared/tool_name_validation.py is end-anchored with $: TOOL_NAME_REGEX = re.compile(r"^[A-Za-z0-9._-]{1,128}$") In Python's default (non-MU...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Tool name validation accepts a trailing newline (regex uses `$` instead of `\\Z`)","articleBody":"### Describe the bug\n\n`TOOL_NAME_REGEX` in `src/mcp/shared/tool_name_validation.py` is end-anchored with `$`:\n\n```python\nTOOL_NAME_REGEX = re.compile(r\"^[A-Za-z0-9._-]{1,128}$\")\n```\n\nIn Python's default (non-`MULTILINE`) mode, `$` matches at end-of-string **or immediately before a single trailing `\\n`**. So a tool name ending in exactly one newline passes validation, even though `\\n` is not in the allowed character set.\n\nThe length guard uses `len()`, which counts the `\\n`, so `\"a\" * 127 + \"\\n\"` (length 128) slips past both the length check and the character check.\n\nEmbedded newlines and other trailing control characters are already rejected correctly. Only the single-trailing-newline case leaks.\n\n### To Reproduce\n\n```python\nfrom mcp.shared.tool_name_validation import validate_tool_name, validate_and_warn_tool_name\n\nprint(validate_tool_name(\"evil_tool\\n\").is_valid)   # True  (expected: False)\nprint(validate_and_warn_tool_name(\"evil_tool\\n\"))   # True, and no warning is logged\n\nprint(validate_tool_name(\"a\" * 127 + \"\\n\").is_valid)  # True, length 128 passes too\n```\n\n### Expected behavior\n\n`validate_tool_name(\"evil_tool\\n\").is_valid` should be `False`, since `\\n` is not one of the allowed characters.\n\n### Additional context\n\nAnchoring the end with `\\Z` (strict end-of-string) instead of `$` fixes it, and no valid name is affected: `re.match(r\"^[A-Za-z0-9._-]{1,128}\\Z\", \"abc\")` still matches, while `\"abc\\n\"` correctly fails.\n\nI have an open PR with this fix and a regression test: #3076. Filing this issue to track it, per CONTRIBUTING (\"Bug fixes for clear, reproducible issues are welcome—but still create an issue to track the fix\").\n","author":{"url":"https://github.com/Otis0408","@type":"Person","name":"Otis0408"},"datePublished":"2026-07-10T11:27:01.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/3084/python-sdk/issues/3084"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:b44dc579-9571-2a6f-9eff-51608b231116
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9500:2D74E4:178E22B:2056622:6A572B8F
html-safe-noncebe850453a6caf83c50c9ac8da78795e7b5c8e03bfad92a1a01822d60be2a4e5c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NTAwOjJENzRFNDoxNzhFMjJCOjIwNTY2MjI6NkE1NzJCOEYiLCJ2aXNpdG9yX2lkIjoiNDU5MDYwMDUyNjgxMTgzNTI3OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac5ddf35ad8691da705b93bd92e343c0f435e003c340be1791b0e7a04e802fec14
hovercard-subject-tagissue:4854577663
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/3084/issue_layout
twitter:imagehttps://opengraph.githubassets.com/04082bac69aae0eb83b5567782987e78e632ddb90f36f602421f5831f1bf39f9/modelcontextprotocol/python-sdk/issues/3084
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/04082bac69aae0eb83b5567782987e78e632ddb90f36f602421f5831f1bf39f9/modelcontextprotocol/python-sdk/issues/3084
og:image:altDescribe the bug TOOL_NAME_REGEX in src/mcp/shared/tool_name_validation.py is end-anchored with $: TOOL_NAME_REGEX = re.compile(r"^[A-Za-z0-9._-]{1,128}$") In Python's default (non-MULTILINE) mode,...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameOtis0408
hostnamegithub.com
expected-hostnamegithub.com
None4e7a7296a3830877cf21a6ad2a972c9e618a48915e03966cf0c53eb08e5aad98
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
release2576d1f0198cf1588faf2edf27f1ed120903be10
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/python-sdk/issues/3084#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2F3084
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%2F3084
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/3084
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/3084
Reloadhttps://github.com/modelcontextprotocol/python-sdk/issues/3084
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/issues/3084
modelcontextprotocol https://github.com/modelcontextprotocol
python-sdkhttps://github.com/modelcontextprotocol/python-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Fork 3.6k 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 251 https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests 289 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
#3076https://github.com/modelcontextprotocol/python-sdk/pull/3076
Tool name validation accepts a trailing newline (regex uses $ instead of \Z)https://github.com/modelcontextprotocol/python-sdk/issues/3084#top
#3076https://github.com/modelcontextprotocol/python-sdk/pull/3076
v2Ideas, requests and plans for v2 of the SDK which will incorporate major changes and fixeshttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22v2%22
https://github.com/Otis0408
Otis0408https://github.com/Otis0408
on Jul 10, 2026https://github.com/modelcontextprotocol/python-sdk/issues/3084#issue-4854577663
#3076https://github.com/modelcontextprotocol/python-sdk/pull/3076
v2Ideas, requests and plans for v2 of the SDK which will incorporate major changes and fixeshttps://github.com/modelcontextprotocol/python-sdk/issues?q=state%3Aopen%20label%3A%22v2%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.