@pantheon.ai/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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -883,7 +883,7 @@ async function mcpServer({ authorizationHeader }) {
883
883
  const inputSchemaShape = {};
884
884
  if (paramsSchema) inputSchemaShape.params = paramsSchema;
885
885
  if (bodySchema) inputSchemaShape.body = bodySchema;
886
- mcpServer.registerTool(name, {
886
+ mcpServer.registerTool(`pantheon.${name}`, {
887
887
  ...options,
888
888
  inputSchema: z.object(inputSchemaShape)
889
889
  }, toolCallback ?? (async ({ params, body }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pantheon.ai/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "bin": "dist/cli.js",