@amityco/foundry-mcp 0.1.0 → 0.1.1
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/server.js +1 -1
- package/package.json +2 -1
package/dist/server.js
CHANGED
|
@@ -13,7 +13,7 @@ const tools = new Map([searchDocsTool, getDocPageTool, inspectProjectTool, planH
|
|
|
13
13
|
tool,
|
|
14
14
|
]));
|
|
15
15
|
const packageName = "@amityco/foundry-mcp";
|
|
16
|
-
const packageVersion = "0.1.
|
|
16
|
+
const packageVersion = "0.1.1";
|
|
17
17
|
const cliResult = handleCli(process.argv.slice(2));
|
|
18
18
|
if (cliResult === "exit") {
|
|
19
19
|
process.exit(0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amityco/foundry-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Local MCP server for social.plus SDK integration assistance.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsc -p tsconfig.json",
|
|
38
|
+
"postbuild": "chmod +x dist/server.js",
|
|
38
39
|
"pack:check": "npm pack --dry-run --cache /private/tmp/social-plus-foundry-npm-cache",
|
|
39
40
|
"publish:check": "npm run validate && npm publish --dry-run --access public --cache /private/tmp/social-plus-foundry-npm-cache",
|
|
40
41
|
"start": "node dist/server.js",
|