@mixio-pro/kalaasetu-mcp 2.2.6-exp → 2.2.7-exp

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 +1 -1
  2. package/src/index.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mixio-pro/kalaasetu-mcp",
3
- "version": "2.2.6-exp",
3
+ "version": "2.2.7-exp",
4
4
  "description": "A powerful Model Context Protocol server providing AI tools for content generation and analysis",
5
5
  "type": "module",
6
6
  "module": "src/index.ts",
package/src/index.ts CHANGED
@@ -102,11 +102,11 @@ async function main() {
102
102
  description: "Get the current version of the Kalaasetu MCP server",
103
103
  parameters: z.object({}),
104
104
  execute: async () => {
105
- return {
105
+ return JSON.stringify({
106
106
  version: pkg.version,
107
107
  clientId: process.env.CLIENT_ID,
108
108
  projectId: process.env.PROJECT_ID,
109
- };
109
+ });
110
110
  },
111
111
  });
112
112