@executor-js/plugin-mcp 0.0.1-beta.4 → 0.0.1-beta.5
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/README.md +2 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Register [Model Context Protocol](https://modelcontextprotocol.io) servers as tool sources for an executor. Supports both stdio-launched servers and remote (HTTP) servers, with optional OAuth.
|
|
4
4
|
|
|
5
|
-
Pairs with [`@executor/sdk`](https://www.npmjs.com/package/@executor/sdk) (promise-based) or [`@executor/core`](https://www.npmjs.com/package/@executor/core) (Effect-based).
|
|
6
|
-
|
|
7
5
|
## Install
|
|
8
6
|
|
|
9
7
|
```sh
|
|
@@ -48,9 +46,9 @@ const result = await executor.tools.invoke(
|
|
|
48
46
|
);
|
|
49
47
|
```
|
|
50
48
|
|
|
51
|
-
##
|
|
49
|
+
## Using with Effect
|
|
52
50
|
|
|
53
|
-
If you're
|
|
51
|
+
If you're building on `@executor/sdk/core` (the raw Effect entry), import this plugin from its `/core` subpath instead:
|
|
54
52
|
|
|
55
53
|
```ts
|
|
56
54
|
import { mcpPlugin } from "@executor/plugin-mcp/core";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@executor-js/plugin-mcp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.1-beta.
|
|
4
|
+
"version": "0.0.1-beta.5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@effect/platform": "^0.96.0",
|
|
43
43
|
"@effect/platform-node": "^0.106.0",
|
|
44
|
-
"@executor-js/sdk": "0.0.1-beta.
|
|
44
|
+
"@executor-js/sdk": "0.0.1-beta.5",
|
|
45
45
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
46
46
|
"effect": "^3.21.0"
|
|
47
47
|
},
|