@warmio/mcp 1.2.2 → 1.2.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/dist/server.js +3 -3
  2. package/package.json +1 -1
package/dist/server.js CHANGED
@@ -111,7 +111,7 @@ async function apiRequest(endpoint, params = {}) {
111
111
  }
112
112
  return response.json();
113
113
  }
114
- const server = new Server({ name: 'warm', version: '1.2.2' }, { capabilities: { tools: {} } });
114
+ const server = new Server({ name: 'warm', version: '1.2.3' }, { capabilities: { tools: {} } });
115
115
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
116
116
  tools: [
117
117
  {
@@ -139,7 +139,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
139
139
  },
140
140
  limit: {
141
141
  type: 'number',
142
- description: 'Max transactions to return (default: 200, max: 500)',
142
+ description: 'Max transactions to return (default: 200, max: 1000)',
143
143
  },
144
144
  },
145
145
  },
@@ -201,7 +201,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
201
201
  const until = args?.until ? String(args.until) : undefined;
202
202
  const parsedLimit = args?.limit ? Number(args.limit) : 200;
203
203
  const requestedLimit = Number.isFinite(parsedLimit)
204
- ? Math.max(1, Math.min(Math.floor(parsedLimit), 500))
204
+ ? Math.max(1, Math.min(Math.floor(parsedLimit), 1000))
205
205
  : 200;
206
206
  let transactions = [];
207
207
  let cursor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warmio/mcp",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "MCP server for Warm Financial API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",