fixparser-plugin-mcp 9.1.7-dde631c6 → 9.1.7-def37df3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,60 +0,0 @@
1
- import { type IFIXParser, type Logger } from 'fixparser';
2
- import type { IPlugin } from 'fixparser-common';
3
- export type PluginOptions = {
4
- port: number;
5
- logger?: Logger;
6
- onReady: () => void;
7
- };
8
- export declare class MCPRemote implements IPlugin<IFIXParser> {
9
- /**
10
- * Port number the server will listen on.
11
- * @private
12
- */
13
- private port;
14
- /**
15
- * Optional logger instance for diagnostics and output.
16
- * @private
17
- */
18
- private logger;
19
- /**
20
- * FIXParser instance, set during plugin register().
21
- * @private
22
- */
23
- private parser;
24
- /**
25
- * Node.js HTTP server instance created internally.
26
- * @private
27
- */
28
- private server;
29
- /**
30
- * MCP server instance handling MCP protocol logic.
31
- * @private
32
- */
33
- private mcpServer;
34
- /**
35
- * Optional name of the plugin/server instance.
36
- * @private
37
- */
38
- private name;
39
- /**
40
- * Optional version string of the plugin/server.
41
- * @private
42
- */
43
- private version;
44
- /**
45
- * Called when server is setup and listening.
46
- * @private
47
- */
48
- private onReady;
49
- /**
50
- * A map of pending market data requests, keyed by MDReqID.
51
- * Each entry contains a resolver function that is called when the corresponding
52
- * FIX Message is received.
53
- * @private
54
- * @type {Map<string, (data: Message) => void>}
55
- */
56
- private pendingRequests;
57
- constructor({ port, logger, onReady }: PluginOptions);
58
- register(parser: IFIXParser): Promise<void>;
59
- private addWorkflows;
60
- }
@@ -1,6 +0,0 @@
1
- import type { Logger } from 'fixparser';
2
- export type PluginOptions = {
3
- port: number;
4
- logger?: Logger;
5
- onReady: () => void;
6
- };
package/types/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export { PluginOptions } from './PluginOptions';
2
- export { MCPLocal } from './MCPLocal';
3
- export { MCPRemote } from './MCPRemote';