@mixio-pro/kalaasetu-mcp 2.2.5-exp → 2.2.6-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 +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mixio-pro/kalaasetu-mcp",
3
- "version": "2.2.5-exp",
3
+ "version": "2.2.6-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,7 +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 pkg.version;
105
+ return {
106
+ version: pkg.version,
107
+ clientId: process.env.CLIENT_ID,
108
+ projectId: process.env.PROJECT_ID,
109
+ };
106
110
  },
107
111
  });
108
112