packkit-mcp 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "packkit-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
+ "mcpName": "io.github.DanMat/packkit-mcp",
4
5
  "description": "MCP server for Packkit — let AI agents scaffold modern npm packages, CLIs, services, and apps as a native tool.",
5
6
  "type": "module",
6
7
  "bin": {
package/server.js CHANGED
@@ -78,7 +78,7 @@ function fileTree(files) {
78
78
  return Object.keys(files).sort().map((p) => ` ${p}`).join('\n');
79
79
  }
80
80
 
81
- const server = new Server({ name: 'packkit', version: '0.1.1' }, { capabilities: { tools: {} } });
81
+ const server = new Server({ name: 'packkit', version: '0.1.3' }, { capabilities: { tools: {} } });
82
82
 
83
83
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
84
84