a11y-devkit-deploy 0.9.4 → 0.9.5

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.
@@ -95,7 +95,7 @@
95
95
  "name": "wcag",
96
96
  "description": "WCAG guidelines reference",
97
97
  "command": "npx",
98
- "args": ["-y", "wcag-mcp"]
98
+ "args": ["-y", "wcag-guidelines-mcp"]
99
99
  },
100
100
  {
101
101
  "name": "aria",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a11y-devkit-deploy",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "CLI to deploy a11y skills and MCP servers across IDEs",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -153,7 +153,8 @@ function mergeServers(existing, incoming, serverKey = "servers") {
153
153
  for (const server of incoming) {
154
154
  const serverConfig = {
155
155
  command: server.command,
156
- args: server.args || []
156
+ args: server.args || [],
157
+ startup_timeout_sec: 30
157
158
  };
158
159
 
159
160
  // Include type if provided