We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/selfxyz/self-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
troubleshooting.py•594 B
"""Prompt for troubleshooting Self integration issues"""
async def troubleshoot_integration(
error_description: str,
code_snippet: str = ""
) -> str:
"""Interactive troubleshooting for Self integration issues"""
return f"""I'll help troubleshoot your Self integration issue.
Error: {error_description}
{f'Code: {code_snippet}' if code_snippet else ''}
Let me analyze this step by step:
1. First, let's verify your configuration
2. Check common issues
3. Test each component
Can you also provide:
- Your frontend scope value
- Backend scope value
- Any console errors?"""