@mr.dj2u/mcp-server 0.1.1 → 0.1.2
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/index.js +1 -1
- package/dist/stdio.d.ts +3 -0
- package/dist/stdio.d.ts.map +1 -0
- package/dist/stdio.js +8 -0
- package/dist/stdio.js.map +1 -0
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export function resolveSuperStackInvocation() {
|
|
|
18
18
|
export function createMrdjMcpServer() {
|
|
19
19
|
const server = new McpServer({
|
|
20
20
|
name: 'mr-djs-dev-suite',
|
|
21
|
-
version: '0.1.
|
|
21
|
+
version: '0.1.2',
|
|
22
22
|
description: 'MDS Expo dev-suite Doctor, knowledge resources, and onboarding prompts.',
|
|
23
23
|
}, {
|
|
24
24
|
capabilities: {
|
package/dist/stdio.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stdio.d.ts","sourceRoot":"","sources":["../src/stdio.ts"],"names":[],"mappings":""}
|
package/dist/stdio.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { startStdioServer } from './index.js';
|
|
3
|
+
startStdioServer().catch((error) => {
|
|
4
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
5
|
+
console.error('Fatal error in mr-djs-dev-suite MCP server:', message);
|
|
6
|
+
process.exit(1);
|
|
7
|
+
});
|
|
8
|
+
//# sourceMappingURL=stdio.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stdio.js","sourceRoot":"","sources":["../src/stdio.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAE9C,gBAAgB,EAAE,CAAC,KAAK,CAAC,CAAC,KAAc,EAAE,EAAE;IAC1C,MAAM,OAAO,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvE,OAAO,CAAC,KAAK,CAAC,6CAA6C,EAAE,OAAO,CAAC,CAAC;IACtE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mr.dj2u/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server for mds suite (Claude integration point)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -22,9 +22,10 @@
|
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/index.js",
|
|
24
24
|
"types": "./dist/index.d.ts",
|
|
25
|
-
"bin": {
|
|
26
|
-
"
|
|
27
|
-
|
|
25
|
+
"bin": {
|
|
26
|
+
"mcp-server": "./dist/stdio.js",
|
|
27
|
+
"mds-mcp-server": "./dist/stdio.js"
|
|
28
|
+
},
|
|
28
29
|
"scripts": {
|
|
29
30
|
"build": "tsc",
|
|
30
31
|
"type-check": "tsc --noEmit",
|