fixparser-plugin-mcp
Version:
FIXParser MCP Plugin (Local/Remote)
17 lines (16 loc) • 466 B
TypeScript
import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js';
export type { MarketDataEntry } from './marketData.ts';
export interface VerifiedOrder {
clOrdID: string;
handlInst: string;
quantity: number;
price: number;
ordType: string;
side: string;
symbol: string;
timeInForce: string;
}
export type ToolHandler = (args: any) => Promise<CallToolResult>;
export interface ToolHandlers {
[key: string]: ToolHandler;
}