storno-cli 1.0.24 → 1.0.25

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.
@@ -297,7 +297,7 @@ export function startHttpServer(port, host) {
297
297
  if (url.pathname === '/api/status' && req.method === 'GET') {
298
298
  const status = {
299
299
  server: 'storno-mcp',
300
- version: '1.0.22',
300
+ version: '1.0.25',
301
301
  activeSessions: sessions.size,
302
302
  uptime: process.uptime(),
303
303
  };
package/dist/server.js CHANGED
@@ -115,7 +115,7 @@ const allTools = [
115
115
  export function createMcpServer() {
116
116
  const server = new McpServer({
117
117
  name: 'storno',
118
- version: '1.0.22',
118
+ version: '1.0.25',
119
119
  });
120
120
  for (const tool of allTools) {
121
121
  server.tool(tool.name, tool.description, tool.inputSchema.shape, async (params, extra) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storno-cli",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "MCP server for the Storno.ro e-invoicing API — enables AI tools (Claude, Cursor, Windsurf) to manage invoices, clients, companies, and the full e-Factura workflow",
5
5
  "type": "module",
6
6
  "bin": {