@interopio/mcp-core 0.1.0-beta.0 → 1.0.0
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.
- package/dist/mcp-core.es.js +26 -20
- package/dist/mcp-core.es.js.map +1 -1
- package/dist/mcp-core.umd.js +26 -20
- package/dist/mcp-core.umd.js.map +1 -1
- package/mcp-core.d.ts +1 -1
- package/package.json +3 -3
- package/readme.md +3 -3
package/mcp-core.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IOConnectBrowser } from "@interopio/browser";
|
|
2
2
|
import { IOConnectDesktop } from "@interopio/desktop";
|
|
3
|
-
import { IoIntelWorkingContext, IoIntelWorkingContextFactoryFunction } from "@interopio/
|
|
3
|
+
import { IoIntelWorkingContext, IoIntelWorkingContextFactoryFunction } from "@interopio/working-context";
|
|
4
4
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
5
5
|
|
|
6
6
|
export namespace IoIntelMCPCore {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interopio/mcp-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "io.Intelligence MCP Core Library",
|
|
6
6
|
"main": "./dist/mcp-core.umd.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@interopio/browser": "^4.0.0",
|
|
23
23
|
"@interopio/desktop": "^6.0.0",
|
|
24
|
-
"@interopio/
|
|
24
|
+
"@interopio/working-context": "^1.0.0",
|
|
25
25
|
"@modelcontextprotocol/sdk": "^1.19.1"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"license": "MIT",
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "48eed5aba906bcf98b959d15a43f2306acf3d292"
|
|
51
51
|
}
|
package/readme.md
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
- **System Tools**: Pre-built tools for searching and starting applications and workspaces
|
|
47
47
|
- **Static Tools**: Define tools in configuration that are automatically managed
|
|
48
48
|
- **Dynamic Tools**: Register and unregister tools at runtime based on application state
|
|
49
|
-
- **Working Context Integration**: Optional integration with `@interopio/
|
|
49
|
+
- **Working Context Integration**: Optional integration with `@interopio/working-context` for enhanced context management
|
|
50
50
|
- **Client Capability Detection**: Automatically adjusts available tools based on client capabilities
|
|
51
51
|
- **Multi-Transport Support**: Works with STDIO, HTTP, and web-based transports
|
|
52
52
|
|
|
@@ -95,7 +95,7 @@ MCP clients declare capabilities such as `sampling` (for search operations) and
|
|
|
95
95
|
|
|
96
96
|
### Working Context Integration
|
|
97
97
|
|
|
98
|
-
Optional integration with `@interopio/
|
|
98
|
+
Optional integration with `@interopio/working-context` enables the `io_connect_get_working_context` tool, allowing LLMs to retrieve the user's current business context (selected clients, portfolios, instruments, etc.).
|
|
99
99
|
|
|
100
100
|
---
|
|
101
101
|
|
|
@@ -949,7 +949,7 @@ console.log("MCP server ready");
|
|
|
949
949
|
|
|
950
950
|
```typescript
|
|
951
951
|
import { IoIntelMCPCoreFactory } from "@interopio/mcp-core";
|
|
952
|
-
import { IoIntelWorkingContextFactory } from "@interopio/
|
|
952
|
+
import { IoIntelWorkingContextFactory } from "@interopio/working-context";
|
|
953
953
|
import IOConnectBrowser from "@interopio/browser";
|
|
954
954
|
|
|
955
955
|
const io = await IOConnectBrowser();
|