Common Setup Issues

Extension Issues

Development Issues

Native Server Issues

Tool-Specific Issues

Performance Issues

Getting Help

If you’re still experiencing issues:
1

Check the documentation

Review the official docs for updated information
2

Search existing issues

Look for similar problems in GitHub Issues
3

Join the community

Ask questions in our Discord server
4

Create an issue

If it’s a bug, create a detailed issue with:
  • Steps to reproduce
  • Expected vs actual behavior
  • Browser and extension versions
  • Console errors

Debug Mode

Enable debug logging for more information:
// Enable verbose logging
const server = new McpServer({
  name: "my-app",
  version: "1.0.0",
  debug: true // Enable debug mode
});

// Or set via environment variable
process.env.DEBUG = 'mcp:*';
Debug mode may expose sensitive information in console logs. Only use in development.