Troubleshooting

Having trouble with Pylee? This guide covers the most common issues and their solutions.

Quick Help: Most setup issues can be resolved by restarting your application completely and checking your API key. If problems persist, try the solutions below.

Common Issues and Solutions

Platform-Specific Issues

Common macOS Issues

Gatekeeper blocking execution:

# Allow npx to run
sudo spctl --master-disable
# Run your MCP client, then re-enable:
sudo spctl --master-enable

SIP (System Integrity Protection) issues:

  • Use Homebrew to install Node.js instead of the system installer
  • Avoid modifying system directories

Permission issues with Application Support:

# Fix permissions
sudo chown -R $(whoami) "~/Library/Application Support"

Getting Debug Information

If you’re still having issues, gather this information before contacting support:

1

System Information

# Check versions
node --version
npm --version

# Check OS
uname -a  # macOS/Linux
# or
systeminfo  # Windows
2

Configuration File

Verify your configuration file exists and has correct content:

# macOS
cat "~/Library/Application Support/Claude/claude_desktop_config.json"

# Linux
cat ~/.config/Claude/claude_desktop_config.json

# Windows (PowerShell)
Get-Content "$env:APPDATA\Claude\claude_desktop_config.json"
3

Test MCP Server Directly

# Test if the MCP server starts
npx @pyleeai/pylee@latest
4

Check Network Connectivity

# Test API connectivity
curl -v https://api.pyleeai.com/health

Still Need Help?

When contacting support, please include:

  • Your operating system and version
  • Node.js and npm versions
  • Your configuration file (with API key redacted)
  • Any error messages you’re seeing
  • Steps you’ve already tried

Additional Resources

Reporting Issues

If you can’t find a solution to your problem:

  1. Check our GitHub Issues - Someone may have already reported the same issue
  2. Search the documentation - Use the search function to find relevant information
  3. Contact support - Include detailed information about your setup and the issue you’re experiencing

When reporting issues, please include your operating system, Node.js version, and any error messages you’re seeing. This helps us provide better support.

Troubleshooting

Having trouble with Pylee? This guide covers the most common issues and their solutions.

Quick Help: Most setup issues can be resolved by restarting your application completely and checking your API key. If problems persist, try the solutions below.

Common Issues and Solutions

Platform-Specific Issues

Common macOS Issues

Gatekeeper blocking execution:

# Allow npx to run
sudo spctl --master-disable
# Run your MCP client, then re-enable:
sudo spctl --master-enable

SIP (System Integrity Protection) issues:

  • Use Homebrew to install Node.js instead of the system installer
  • Avoid modifying system directories

Permission issues with Application Support:

# Fix permissions
sudo chown -R $(whoami) "~/Library/Application Support"

Getting Debug Information

If you’re still having issues, gather this information before contacting support:

1

System Information

# Check versions
node --version
npm --version

# Check OS
uname -a  # macOS/Linux
# or
systeminfo  # Windows
2

Configuration File

Verify your configuration file exists and has correct content:

# macOS
cat "~/Library/Application Support/Claude/claude_desktop_config.json"

# Linux
cat ~/.config/Claude/claude_desktop_config.json

# Windows (PowerShell)
Get-Content "$env:APPDATA\Claude\claude_desktop_config.json"
3

Test MCP Server Directly

# Test if the MCP server starts
npx @pyleeai/pylee@latest
4

Check Network Connectivity

# Test API connectivity
curl -v https://api.pyleeai.com/health

Still Need Help?

When contacting support, please include:

  • Your operating system and version
  • Node.js and npm versions
  • Your configuration file (with API key redacted)
  • Any error messages you’re seeing
  • Steps you’ve already tried

Additional Resources

Reporting Issues

If you can’t find a solution to your problem:

  1. Check our GitHub Issues - Someone may have already reported the same issue
  2. Search the documentation - Use the search function to find relevant information
  3. Contact support - Include detailed information about your setup and the issue you’re experiencing

When reporting issues, please include your operating system, Node.js version, and any error messages you’re seeing. This helps us provide better support.