Skip to content

Commit c7e582b

Browse files
committed
fix(test/github): clean debug code
1 parent ad7ebe0 commit c7e582b

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

test/github.c

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -165,19 +165,6 @@ int main(void) {
165165
sqlite3_finalize(stmt);
166166
printf(" * Connected to GitHub MCP server\n");
167167

168-
// Verify tools are available
169-
rc = sqlite3_prepare_v2(db, "SELECT mcp_list_tools_json()", -1, &stmt, 0);
170-
if (rc == SQLITE_OK && sqlite3_step(stmt) == SQLITE_ROW) {
171-
const char *tools = (const char *)sqlite3_column_text(stmt, 0);
172-
if (tools && strstr(tools, "error") != NULL) {
173-
fprintf(stderr, "Error: Failed to list tools: %s\n", tools);
174-
sqlite3_finalize(stmt);
175-
return 1;
176-
}
177-
}
178-
sqlite3_finalize(stmt);
179-
printf(" * MCP tools verified\n\n");
180-
181168
// STEP 4: Create table and run agent
182169
print_separator();
183170
printf("STEP 4: Create Table and Run Agent\n");

0 commit comments

Comments
 (0)