@epicdm/flowstate-mcp-client
v1.0.8
Published
TypeScript client for FlowState MCP Gateway
Readme
FlowState MCP Client
TypeScript client for connecting to FlowState MCP Gateway from web and Electron applications.
Installation
yarn add @epic-flow/flowstate-mcp-clientUsage
import { MCPClient } from '@epic-flow/flowstate-mcp-client';
const client = new MCPClient({
baseUrl: 'http://localhost:7081',
});
const tools = await client.listTools();
const result = await client.callTool('collection-query', { collection: 'tasks' });