fixparser-plugin-mcp
Version:
FIXParser MCP Plugin (Local/Remote)
182 lines (181 loc) • 4.7 kB
TypeScript
export declare const toolSchemas: {
parse: {
description: string;
schema: {
type: string;
properties: {
fixString: {
type: string;
};
};
required: string[];
};
};
parseToJSON: {
description: string;
schema: {
type: string;
properties: {
fixString: {
type: string;
};
};
required: string[];
};
};
verifyOrder: {
description: string;
schema: {
type: string;
properties: {
clOrdID: {
type: string;
};
handlInst: {
type: string;
enum: string[];
description: string;
};
quantity: {
type: string;
};
price: {
type: string;
};
ordType: {
type: string;
enum: string[];
description: string;
};
side: {
type: string;
enum: string[];
description: string;
};
symbol: {
type: string;
};
timeInForce: {
type: string;
enum: string[];
description: string;
};
};
required: string[];
};
};
executeOrder: {
description: string;
schema: {
type: string;
properties: {
clOrdID: {
type: string;
};
handlInst: {
type: string;
enum: string[];
description: string;
};
quantity: {
type: string;
};
price: {
type: string;
};
ordType: {
type: string;
enum: string[];
description: string;
};
side: {
type: string;
enum: string[];
description: string;
};
symbol: {
type: string;
};
timeInForce: {
type: string;
enum: string[];
description: string;
};
};
required: string[];
};
};
marketDataRequest: {
description: string;
schema: {
type: string;
properties: {
mdUpdateType: {
type: string;
enum: string[];
description: string;
};
symbols: {
type: string;
items: {
type: string;
};
};
mdReqID: {
type: string;
};
subscriptionRequestType: {
type: string;
enum: string[];
description: string;
};
mdEntryTypes: {
type: string;
items: {
type: string;
enum: string[];
};
description: string;
};
};
required: string[];
};
};
getStockGraph: {
description: string;
schema: {
type: string;
properties: {
symbol: {
type: string;
};
};
required: string[];
};
};
getStockPriceHistory: {
description: string;
schema: {
type: string;
properties: {
symbol: {
type: string;
};
};
required: string[];
};
};
technicalAnalysis: {
description: string;
schema: {
type: string;
properties: {
symbol: {
type: string;
description: string;
};
};
required: string[];
};
};
};