flowspec-mcp 2.1.0 → 2.1.1

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.
package/dist/index.js CHANGED
File without changes
package/dist/server.js CHANGED
@@ -18,7 +18,7 @@ import { MODE } from './config.js';
18
18
  export function createServer() {
19
19
  const server = new McpServer({
20
20
  name: 'flowspec',
21
- version: '2.0.0',
21
+ version: '2.1.1',
22
22
  });
23
23
  // ─── Read tools ──────────────────────────────────────────────────
24
24
  server.tool('flowspec_list_projects', 'List all FlowSpec projects with names and dates', listProjectsSchema.shape, handleListProjects);
@@ -36,7 +36,7 @@ export function createServer() {
36
36
  server.tool('flowspec_create_edge', 'Connect two nodes with an edge type (flows-to, derives-from, transforms, validates, contains)', createEdgeSchema.shape, handleCreateEdge);
37
37
  server.tool('flowspec_delete_edge', 'Remove an edge from a project', deleteEdgeSchema.shape, handleDeleteEdge);
38
38
  server.tool('flowspec_analyse_project', 'Run orphan node and duplicate label analysis on a project', analyseProjectSchema.shape, handleAnalyseProject);
39
- console.error(`FlowSpec MCP v2.0.0 — mode: ${MODE}`);
39
+ console.error(`FlowSpec MCP v2.1.1 — mode: ${MODE}`);
40
40
  return server;
41
41
  }
42
42
  //# sourceMappingURL=server.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowspec-mcp",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "type": "module",
5
5
  "description": "MCP server for FlowSpec — exposes project specs to Claude Code",
6
6
  "bin": {