sdd-mcp-server 1.1.19 → 1.1.20

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.
File without changes
@@ -0,0 +1,44 @@
1
+ #!/usr/bin/env node
2
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
3
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4
+ import { z } from "zod";
5
+
6
+ const server = new McpServer({
7
+ name: 'sdd-mcp-server',
8
+ version: '1.1.20'
9
+ }, {
10
+ instructions: 'Use this server for spec-driven development workflows'
11
+ });
12
+
13
+ // Register SDD tools
14
+ server.registerTool("sdd-init", {
15
+ title: "Initialize SDD Project",
16
+ description: "Initialize a new SDD project",
17
+ inputSchema: {
18
+ projectName: z.string().describe('The name of the project to initialize'),
19
+ description: z.string().optional().describe('Optional project description')
20
+ },
21
+ }, async ({ projectName, description }) => {
22
+ return {
23
+ content: [{
24
+ type: 'text',
25
+ text: `SDD project "${projectName}" initialization would begin here.${description ? ` Description: ${description}` : ''}`
26
+ }]
27
+ };
28
+ });
29
+
30
+ server.registerTool("sdd-status", {
31
+ title: "Get SDD Project Status",
32
+ description: "Get current SDD project status",
33
+ inputSchema: {},
34
+ }, async () => {
35
+ return {
36
+ content: [{
37
+ type: 'text',
38
+ text: 'SDD project status: No active project found. Use sdd-init to create a new project.'
39
+ }]
40
+ };
41
+ });
42
+
43
+ const transport = new StdioServerTransport();
44
+ await server.connect(transport);
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "sdd-mcp-server",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "MCP server for spec-driven development workflows across AI-agent CLIs and IDEs",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
- "sdd-mcp-server": "debug-mcp-server.js",
7
+ "sdd-mcp-server": "fixed-mcp-server.js",
8
8
  "sdd-mcp": "dist/index.js"
9
9
  },
10
10
  "type": "module",
@@ -12,6 +12,7 @@
12
12
  "dist/**/*",
13
13
  "mcp-server.js",
14
14
  "debug-mcp-server.js",
15
+ "fixed-mcp-server.js",
15
16
  "README.md",
16
17
  "LICENSE",
17
18
  "package.json"