Skip to content

Commit b4f3c89

Browse files
committed
fix: more updates removed some debugging messages
1 parent d36af25 commit b4f3c89

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
TAG_SERVICES: 0.0.9
2323
TAG_EXTERNAL: 0.0.1
2424
TAG_UI: 0.0.31
25-
TAG_MCP: 0.0.3
25+
TAG_MCP: 0.0.4
2626

2727
steps:
2828
- name: Checkout code

objectified-mcp/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async def get_class_by_id(id: str) -> list[str]:
5151
"""Retrieves class information by ID"""
5252
conn = connect_to_postgres(DATABASE_URL)
5353
result = run_query(conn, "SELECT * FROM obj.class WHERE id=%s", (id,))
54-
print(f"[get_class_by_id]: id={id} result={result}")
54+
print(f"[get_class_by_id] id={id}")
5555
return result if len(result) > 0 else "{}"
5656

5757
if __name__ == "__main__":

0 commit comments

Comments
 (0)