sdd-mcp-server 1.1.11 → 1.1.12

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/mcp-server.js +4 -2
  2. package/package.json +1 -1
package/mcp-server.js CHANGED
@@ -1,6 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- // Minimal MCP server - always uses simplified implementation
3
+ // Fast startup MCP server - optimized for Claude Code health checks
4
+
5
+ // Silence console output immediately
4
6
  console.log = () => {};
5
7
  console.info = () => {};
6
8
  console.warn = () => {};
@@ -17,7 +19,7 @@ import {
17
19
 
18
20
  const server = new Server({
19
21
  name: 'sdd-mcp-server',
20
- version: '1.1.10'
22
+ version: '1.1.11'
21
23
  }, {
22
24
  capabilities: {
23
25
  tools: {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdd-mcp-server",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
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": {