Common Issues
Connection Problems
Authentication Error
Authentication Error
Symptoms:Likely Causes:
- Incorrect API key
- Wrong base64 encoding
- Expired or disabled API key
-
Verify API key encoding (include colon!):
-
Test with cURL:
-
Check account ID format:
- Numeric string (e.g.,
47187425466113776871) - Or short alphanumeric ID (nano ID)
- Must have been initially created in the Stackone Dashboard
- Numeric string (e.g.,
-
Verify API key permissions:
- Ensure key has access to required scopes
Wrong HTTP Method
Wrong HTTP Method
Symptoms:Likely Causes:
- Using GET instead of POST
- Incorrect HTTP method
-
Always use POST method:
-
Check endpoint URL:
- Must be exactly
https://api.stackone.com/mcp - No trailing slashes or additional paths
- Must be exactly
-
Include required headers:
Missing x-account-id Header
Missing x-account-id Header
Symptoms:Likely Causes:
- Client doesn’t support custom headers
- Header not configured correctly
- MCP client limitations
Tool Execution Issues
Tools List Empty
Tools List Empty
Symptoms:
tools/listreturns empty array- MCP server connects but no tools available
- Client shows “No tools found”
- Account’s integration configuration is incorrect or does not have any actions enabled
- Account configuration issues
-
Check integrations in StackOne dashboard:
- Verify the account ID is correct and is active
- Ensure the associated integrations configuration has at least 1 action enabled
-
Verify list of accounts:
-
Test specific operations:
Tool Execution Fails
Tool Execution Fails
Symptoms:Likely Causes:
- Invalid tool parameters
- Provider connection issues
- Rate limiting
- Provider-specific errors
- Validate parameters:
-
Check rate limits:
- Monitor X-RateLimit headers in responses
- Implement exponential backoff
- Reduce request frequency
-
Test provider connection:
Error Code Reference
MCP Protocol Errors
| Code | Message | Cause | Solution |
|---|---|---|---|
| -32700 | Parse error | Invalid JSON | Check JSON syntax |
| -32600 | Invalid Request | Malformed request | Verify request structure |
| -32601 | Method not found | Unknown method | Check method name spelling |
| -32602 | Invalid params | Wrong parameters | Validate parameter schema |
| -32603 | Internal error | Server error | Check StackOne status, retry |