MCP from the CLI and SDK
HUMΛN Team··5 min
MCP from the CLI and SDK
CLI
human mcp connect https://github.example.com/mcp
human mcp list-tools
human mcp endpoint
human mcp config # Cursor/Claude JSON snippet
SDK
import { HumanClient } from '@human/sdk';
const client = new HumanClient({ delegationToken: token });
const tools = await client.mcp.listTools();
await client.mcp.callTool('workflow.my-workflow', { input: 'value' });
await client.mcp.connectExternalServer({ endpoint_url: 'https://example.com/mcp' });
Mesh tool names map directly to HumanOS execution — no raw capability:// URIs required.