Phase 2
LangChain
Phase 2: tool wrappers around @agentcell/sdk and the Python agentcell package. Not shipped — use MCP or the SDKs today.
Intended shape
LangChain tools will wrap create_cell, send_message, list_conversations, and billing status with AGENTCELL_API_KEY. Until then, call the TypeScript or Python SDK from a custom tool.
// Phase 2 (not shipped)
// import { AgentCellToolkit } from "@agentcell/langchain";
// Today:
import { AgentCell } from "@agentcell/sdk";
const client = new AgentCell({ apiKey: process.env.AGENTCELL_API_KEY });Copy for Cursor / Claude
# Phase 2 — LangChain toolkit is not shipped.
# Use MCP (https://mcp.agentcell.store/mcp) or:
pip install agentcell
export AGENTCELL_API_KEY=ac_...