Troubleshooting
Common issues and solutions when using Promptsy with MCP.
Connection Issues
Tools Not Appearing
Symptoms:
- AI assistant doesn't recognize Promptsy commands
- "I don't have access to that tool" messages
Solutions:
-
Restart the AI assistant
- Completely quit and reopen Claude Desktop
- Refresh the ChatGPT page
-
Verify configuration
- Check the config file syntax (valid JSON)
- Ensure the URL is correct:
https://mcp.promptsy.dev - Verify the transport is set to
sse
-
Test the server
curl https://mcp.promptsy.dev/Should return:
{"status":"ok"}
Authorization Popup Not Showing
Symptoms:
- No redirect to Promptsy consent screen
- Tool calls hang indefinitely
Solutions:
-
Check popup blockers
- Allow popups from the AI assistant
- Try in incognito/private window
-
Clear browser cache
- Clear cookies for promptsy.dev
- Clear OAuth state
-
Try explicit tool call
"Use the Promptsy browse_prompts tool"
"Not Authorized" Error
Symptoms:
AUTH_REQUIREDerror code- "Please authorize first" message
Solutions:
-
Re-authorize
- Go to Promptsy settings
- Revoke existing connection
- Try connecting again
-
Check account status
- Ensure you're logged into Promptsy
- Verify email is confirmed
-
Check scopes
- Make sure required scopes were granted
- Re-authorize with all scopes
Tool Errors
"Token Expired"
Symptoms:
TOKEN_EXPIREDerror- Worked before, now fails
Solutions:
Usually automatic—the token should refresh. If it doesn't:
- Wait a moment and try again
- Revoke and re-authorize
- Check your Promptsy session is valid
"Insufficient Scope"
Symptoms:
INSUFFICIENT_SCOPEerror- Specific tools don't work
Solutions:
-
Check which scope is needed:
browse_prompts→prompts:readsave_prompt→prompts:write
-
Re-authorize with the required scope
"Limit Reached" (Free Tier)
Symptoms:
LIMIT_REACHEDerror when saving- 25 prompt maximum reached
Solutions:
- Delete unused prompts
- Upgrade to Solo tier for unlimited prompts
"Validation Error"
Symptoms:
VALIDATION_ERRORerror- Tool call fails with parameter issue
Solutions:
- Check parameter types (strings, arrays)
- Verify lengths don't exceed limits:
- Title: 200 characters
- Description: 500 characters
- Tags: 10 maximum
Empty Results
No Prompts Showing
Symptoms:
browse_promptsreturns empty- "You don't have any prompts" message
Solutions:
-
Check your vault
- Open promptsy.dev/dashboard
- Verify you have prompts
-
Check the account
- You might be logged into a different account
- Re-authorize to verify account
-
Try public search
"Search public prompts for email"
If this works, the issue is with your vault access
Search Returns Nothing
Symptoms:
search_public_promptsreturns empty- Expected results not appearing
Solutions:
- Try broader search terms
- Remove category filter
- Check spelling
- Try without quotes
Widget Issues
Widget Not Loading
Symptoms:
- Blank space where widget should be
- Loading spinner that never resolves
Solutions:
- Check internet connection
- Refresh the conversation
- Try a different AI client
Copy Button Not Working
Symptoms:
- Click copy, nothing happens
- No "Copied!" confirmation
Solutions:
- Check clipboard permissions
- Try keyboard shortcut (Ctrl/Cmd + C)
- Manually select and copy text
Widget Looks Broken
Symptoms:
- Missing styles
- Overlapping elements
- Unreadable text
Solutions:
- Clear browser cache
- Try a different browser
- Ask for "plain text results" as workaround
Rate Limiting
"Too Many Requests"
Symptoms:
RATE_LIMITEDerror- 429 status code
Solutions:
- Wait 60 seconds and try again
- Reduce request frequency
- Use larger
limitvalues for fewer calls
Configuration Issues
Invalid JSON
Symptoms:
- Claude Desktop won't start
- Config file error messages
Solutions:
-
Validate JSON at jsonlint.com
-
Check for:
- Missing commas
- Unmatched brackets
- Trailing commas (not allowed)
-
Example valid config:
{
"mcpServers": {
"promptsy": {
"url": "https://mcp.promptsy.dev",
"transport": "sse"
}
}
}
Wrong File Location
Symptoms:
- Config changes have no effect
- AI assistant uses old configuration
Solutions:
Verify the file location for your OS:
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Getting Help
If none of these solutions work:
- Check status page: status.promptsy.dev
- Community forum: Ask in our Discord
- Email support: support@promptsy.dev
When contacting support, include:
- AI assistant and version
- Error message (exact text)
- Steps to reproduce
- Time the error occurred
Error Code Reference
| Code | Meaning | Common Cause |
|---|---|---|
AUTH_REQUIRED | No authentication | Need to authorize |
TOKEN_EXPIRED | Token too old | Should auto-refresh |
INSUFFICIENT_SCOPE | Missing permission | Need more scopes |
TIER_REQUIRED | Feature needs upgrade | Upgrade plan |
CREDITS_EXHAUSTED | No credits left | Wait for refresh or upgrade |
LIMIT_REACHED | Hit tier limit | Delete items or upgrade |
RATE_LIMITED | Too many requests | Wait and retry |
VALIDATION_ERROR | Bad parameters | Check input format |
NOT_AUTHORIZED | Can't access resource | Check ownership |
PROMPT_NOT_FOUND | Prompt doesn't exist | Check prompt ID |
INTERNAL_ERROR | Server issue | Try again later |