Overview
Learn how to identify and fix issues with your MCP integrations.Debugging Tools
MCP Logs
View server request logs
Agent Insights
See tool usage analytics
Playground
Test tools interactively
Accessing Logs
MCP Server Logs
View all requests to your MCP server:Review Requests
See all tool calls:
- Timestamp
- Tool name
- Parameters
- Response
- Status (success/error)
- Duration
Agent Tool Logs
View tools used by specific agent:Common Issues
Authentication Errors
Symptom: 401 Unauthorized or 403 Forbidden Causes:- Invalid API key
- Expired token
- Wrong authentication method
- Missing credentials
Check Credentials
Dashboard -> Agents -> Your Agent -> Tools -> Your ToolVerify:
- API key is correct
- Auth method matches API requirements
- Credentials not expired
Tool Not Found
Symptom: “Tool not available” error Causes:- Tool not in OpenAPI spec
- MCP server not connected to agent
- Tool name mismatch
Check Tool Name
Tool names are generated from endpoint paths:
GET /users->get_usersPOST /customers->create_customer
Slow Responses
Symptom: Tools taking >5 seconds Causes:- Slow API responses
- Large data transfers
- Network issues
- No caching
Invalid Parameters
Symptom: “Invalid parameter” or “Required parameter missing” Causes:- Missing required field
- Wrong parameter type
- Invalid format
Rate Limiting
Symptom: 429 Too Many Requests Causes:- Exceeded API rate limits
- Too many concurrent requests
- No rate limit handling
Debugging Workflow
Step 1: Reproduce
Reproduce the issue consistently:Step 2: Check Logs
Review MCP server logs:Step 3: Test Directly
Test the underlying API directly:Step 4: Isolate
Narrow down the issue:- Is it authentication? Test with different credentials
- Is it the API? Test API directly
- Is it the MCP server? Check other tools
- Is it the agent? Test with different agent
Step 5: Fix
Apply the appropriate fix:Step 6: Verify
Test the fix:Advanced Debugging
Enable Verbose Logging
Get more detailed logs: Dashboard -> MCP Servers -> Your Server -> Settings- Enable Debug Mode
- Shows full request/response bodies
- Includes headers and metadata
Webhook Debugging
For webhooks, test delivery:Network Debugging
Check network issues:Debugging Checklist
When debugging an issue:- Can you reproduce it consistently?
- What’s in the error logs?
- Does the API work directly?
- Is authentication correct?
- Are parameters valid?
- Is the network reachable?
- Are there rate limits?
- Is the OpenAPI spec correct?
- Have you tested in Playground?
- Have you checked recent changes?
Getting Help
If you’re still stuck:Check Documentation
Contact Support
hello@boostgpt.co Include:- MCP server ID
- Error message
- Steps to reproduce
- Logs (from Dashboard -> MCP Servers -> Logs)
- OpenAPI spec or Postman collection