DOCS/TROUBLESHOOTING/TROUBLESHOOTING

troubleshooting

Troubleshooting Common Errors

Here are solutions to the most common configuration and execution issues developers face when running Andromity.


1. Error: `-32601 Method Not Found`

This error occurs when the LLM attempts to invoke an MCP tool, but the connected MCP server does not support that specific method.

Solutions
  • Check if the MCP server has been updated to support the new schema.
  • Verify tool naming inside your configuration. Run /mcp in the TUI to double-check spelling.
  • Re-index MCP servers: restart Andromity to force cached tool index updates.

2. Error: `-32000 Connection Closed` or `Could Not Connect to MCP Server`

The connection between the Andromity TUI and the background MCP process terminated unexpectedly.

Solutions
  • Verify execution paths: Ensure commands like npx or python are available on your system PATH.
  • Test server independently: Try running the MCP server command directly in your shell (e.g. npx @modelcontextprotocol/server-sqlite --db mydb.db) to see if it starts successfully or throws an error.
  • Environment variables: If the server requires secret tokens (such as GITHUB_PERSONAL_ACCESS_TOKEN), ensure they are set in the shell before launching andromity.

3. Error: `No Working IDE Endpoint` or `EverythingProvider Timeout`

Andromity timed out waiting for responses from the LLM routing bridge.

Solutions
  • API rate-limits: Verify that your provider credentials have not expired or reached active rate limits.
  • Network proxy: If behind a corporate firewall, set the HTTPS_PROXY environment variable so LiteLLM can route outbound requests successfully.
  • Local performance: If running local Ollama models, verify that the local LLM is responsive. Slow system hardware can cause response timeouts.