tempo-api-mcp 1.0.0 → 1.0.2

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/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -27,7 +27,7 @@ for (const tool of accountTools)
27
27
  handlers[tool.name] = (n, a) => handleAccounts(n, a, client);
28
28
  for (const tool of projectTools)
29
29
  handlers[tool.name] = (n, a) => handleProjects(n, a, client);
30
- const server = new Server({ name: 'tempo-api-mcp', version: '1.0.0' }, { capabilities: { tools: {} } });
30
+ const server = new Server({ name: 'tempo-api-mcp', version: '1.0.2' }, { capabilities: { tools: {} } });
31
31
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: allTools }));
32
32
  server.setRequestHandler(CallToolRequestSchema, async (request) => {
33
33
  const { name, arguments: args = {} } = request.params;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tempo-api-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Tempo API MCP server for Claude — developed and maintained by AI (Claude Sonnet 4.6)",
5
5
  "author": "Claude Sonnet 4.6 (AI) <https://www.anthropic.com/claude>",
6
6
  "repository": {