Tool names exceed 60-char limit and are being filtered out by MCP
Closed this issue · 1 comments
tymrtn commented
Several tool endpoints generated by this mcp server have fully-qualified names longer than 60 characters
(e.g. github.com/executeautomation/mcp-playwright:playwright_iframe_click).
Cursor currently suppresses any tool whose server-name + tool-name string exceeds 60
chars,
which means these Playwright helpers never appear in the tool registry.
Proposed fix:
• Shorten either the server prefix or the tool IDs (e.g. strip “playwright_” prefix, or alias names).
• Document the naming constraint in README so contributors don’t accidentally exceed it.
Background: This surfaced as a warning in Cursor (“Some tools have naming issues and may be filtered out”).
executeautomation commented
The changes are now available in v1.0.6, thanks for your suggestion and reporting issue.
Thanks