We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c0bdf commit ad7ebe0Copy full SHA for ad7ebe0
src/sqlite-agent.c
@@ -84,14 +84,6 @@ static char* agent_get_tools_list(sqlite3 *db) {
84
return NULL;
85
}
86
87
- // Check if the result contains an error (MCP not connected)
88
- if (strstr(tools_result, "\"error\"") != NULL ||
89
- strstr(tools_result, "Not connected") != NULL) {
90
- DF("MCP connection error detected: %s", tools_result);
91
- sqlite3_finalize(stmt);
92
- return NULL;
93
- }
94
-
95
char *formatted = malloc(32768);
96
if (!formatted) {
97
sqlite3_finalize(stmt);
0 commit comments