From 68e0505d9f4918d5b76aca667ec491114da3ec16 Mon Sep 17 00:00:00 2001 From: Molecule AI SDK-Dev Date: Sun, 17 May 2026 00:14:04 +0000 Subject: [PATCH] docs(mcp): fix stale SDK reference in Platform Integration section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #17 updated known-issues.md but dropped the CLAUDE.md fix. The Platform Integration section incorrectly claimed the server uses the Python SDK (molecule-sdk-python). The MCP server has its own TypeScript client in src/api.ts — the Python SDK is for remote agents. Also fixed "reads data via the platform SDK" → "reads data via the platform REST API" in the Postgres section. Co-Authored-By: Claude Opus 4.7 --- CLAUDE.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 5451007..38b0ed0 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -96,7 +96,10 @@ The workflow: ### APIs Connected -The server connects to the Molecule AI platform REST API. See the platform SDK (`../molecule-sdk-python`) for the underlying API client used. +The server connects to the Molecule AI platform REST API via its own TypeScript +client (`src/api.ts`). It does not use the Python SDK (`molecule-sdk-python`) — +the Python SDK is for remote agents that run outside the platform; this server +runs as an MCP bridge *on* the operator side. ### Environment Variables @@ -110,7 +113,7 @@ For local development, copy `.env.example` → `.env` and fill in values. ### Postgres -Platform data lives in Postgres (source of truth). The server reads data via the platform SDK — it does not connect to Postgres directly. +Platform data lives in Postgres (source of truth). The server reads data via the platform REST API — it does not connect to Postgres directly. ## TypeScript Conventions -- 2.52.0