@outfitter/mcp 0.4.3 → 0.5.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/README.md +92 -0
- package/dist/actions.d.ts +7 -2
- package/dist/actions.js +35 -9
- package/dist/core-tools.d.ts +7 -2
- package/dist/index.d.ts +12 -6
- package/dist/index.js +1 -0
- package/dist/internal/content-types.d.ts +2 -0
- package/dist/internal/content-types.js +1 -0
- package/dist/internal/log-config.d.ts +24 -0
- package/dist/internal/log-config.js +13 -0
- package/dist/internal/prompt-types.d.ts +3 -0
- package/dist/internal/prompt-types.js +1 -0
- package/dist/internal/resource-types.d.ts +4 -0
- package/dist/internal/resource-types.js +1 -0
- package/dist/internal/server-types.d.ts +7 -0
- package/dist/internal/server-types.js +20 -0
- package/dist/internal/tool-types.d.ts +2 -0
- package/dist/{shared/@outfitter/mcp-9m5hs2z0.js → internal/tool-types.js} +4 -16
- package/dist/internal/uri-template.d.ts +8 -0
- package/dist/internal/uri-template.js +7 -0
- package/dist/progress.d.ts +2 -0
- package/dist/progress.js +7 -0
- package/dist/server.d.ts +7 -2
- package/dist/server.js +5 -2
- package/dist/shared/@outfitter/{mcp-knq080yt.d.ts → mcp-3hxaatj9.d.ts} +37 -6
- package/dist/shared/@outfitter/{mcp-s6afm4ff.d.ts → mcp-4s22693j.d.ts} +1 -1
- package/dist/shared/@outfitter/mcp-7btcghjj.d.ts +304 -0
- package/dist/shared/@outfitter/mcp-9ry52yg3.d.ts +187 -0
- package/dist/shared/@outfitter/mcp-dgwj3jna.d.ts +103 -0
- package/dist/shared/@outfitter/{mcp-d8vs6vry.d.ts → mcp-f67dnr72.d.ts} +1 -1
- package/dist/shared/@outfitter/mcp-knc1gq0g.d.ts +130 -0
- package/dist/shared/@outfitter/mcp-n9vzcp37.js +55 -0
- package/dist/shared/@outfitter/mcp-q5hr7227.d.ts +24 -0
- package/dist/shared/@outfitter/mcp-q70dtfj6.js +53 -0
- package/dist/shared/@outfitter/mcp-r27vbpc1.d.ts +45 -0
- package/dist/shared/@outfitter/mcp-s2vnhzav.js +2 -0
- package/dist/shared/@outfitter/{mcp-7kcw2814.d.ts → mcp-yf0w5cgh.d.ts} +1 -1
- package/dist/shared/@outfitter/{mcp-b502y16n.js → mcp-yf1n85e9.js} +76 -116
- package/dist/shared/@outfitter/mcp-zt2s3r38.js +33 -0
- package/dist/transport.d.ts +7 -2
- package/dist/types.d.ts +7 -2
- package/dist/types.js +1 -1
- package/package.json +26 -20
- package/dist/shared/@outfitter/mcp-gqjg15f5.d.ts +0 -669
package/package.json
CHANGED
|
@@ -1,25 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outfitter/mcp",
|
|
3
|
-
"version": "0.4.3",
|
|
4
3
|
"description": "MCP server framework with typed tools for Outfitter",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"model-context-protocol",
|
|
8
|
-
"outfitter",
|
|
9
|
-
"tools",
|
|
10
|
-
"typescript"
|
|
11
|
-
],
|
|
12
|
-
"license": "MIT",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "https://github.com/outfitter-dev/outfitter.git",
|
|
16
|
-
"directory": "packages/mcp"
|
|
17
|
-
},
|
|
4
|
+
"version": "0.5.0",
|
|
5
|
+
"type": "module",
|
|
18
6
|
"files": [
|
|
19
7
|
"dist"
|
|
20
8
|
],
|
|
21
|
-
"type": "module",
|
|
22
|
-
"sideEffects": false,
|
|
23
9
|
"module": "./dist/index.js",
|
|
24
10
|
"types": "./dist/index.d.ts",
|
|
25
11
|
"exports": {
|
|
@@ -48,6 +34,12 @@
|
|
|
48
34
|
}
|
|
49
35
|
},
|
|
50
36
|
"./package.json": "./package.json",
|
|
37
|
+
"./progress": {
|
|
38
|
+
"import": {
|
|
39
|
+
"types": "./dist/progress.d.ts",
|
|
40
|
+
"default": "./dist/progress.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
51
43
|
"./schema": {
|
|
52
44
|
"import": {
|
|
53
45
|
"types": "./dist/schema.d.ts",
|
|
@@ -73,11 +65,25 @@
|
|
|
73
65
|
}
|
|
74
66
|
}
|
|
75
67
|
},
|
|
68
|
+
"keywords": [
|
|
69
|
+
"mcp",
|
|
70
|
+
"model-context-protocol",
|
|
71
|
+
"outfitter",
|
|
72
|
+
"tools",
|
|
73
|
+
"typescript"
|
|
74
|
+
],
|
|
75
|
+
"license": "MIT",
|
|
76
|
+
"repository": {
|
|
77
|
+
"type": "git",
|
|
78
|
+
"url": "https://github.com/outfitter-dev/outfitter.git",
|
|
79
|
+
"directory": "packages/mcp"
|
|
80
|
+
},
|
|
81
|
+
"sideEffects": false,
|
|
76
82
|
"publishConfig": {
|
|
77
83
|
"access": "public"
|
|
78
84
|
},
|
|
79
85
|
"scripts": {
|
|
80
|
-
"build": "cd ../.. && bunup --filter @outfitter/mcp",
|
|
86
|
+
"build": "cd ../.. && bash ./scripts/run-bunup-with-lock.sh bunup --filter @outfitter/mcp",
|
|
81
87
|
"lint": "oxlint ./src",
|
|
82
88
|
"lint:fix": "oxlint --fix ./src",
|
|
83
89
|
"test": "bun test",
|
|
@@ -90,9 +96,9 @@
|
|
|
90
96
|
"zod": "^4.3.5"
|
|
91
97
|
},
|
|
92
98
|
"devDependencies": {
|
|
93
|
-
"@outfitter/config": "0.
|
|
94
|
-
"@outfitter/contracts": "0.
|
|
95
|
-
"@outfitter/logging": "0.4.
|
|
99
|
+
"@outfitter/config": "0.4.0",
|
|
100
|
+
"@outfitter/contracts": "0.5.0",
|
|
101
|
+
"@outfitter/logging": "0.4.3",
|
|
96
102
|
"@types/bun": "^1.3.9",
|
|
97
103
|
"typescript": "^5.9.3"
|
|
98
104
|
},
|