@fruition/fcp-mcp-server 1.10.0 → 1.12.0

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 +13 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1158,6 +1158,10 @@ const TOOLS = [
1158
1158
  type: 'boolean',
1159
1159
  description: 'Whether to create default checklist items (default: true)',
1160
1160
  },
1161
+ slack_channel: {
1162
+ type: 'string',
1163
+ description: 'Slack channel for launch countdown notifications, e.g. #channel-name',
1164
+ },
1161
1165
  },
1162
1166
  required: ['name', 'platform', 'launch_type', 'target_launch_date'],
1163
1167
  },
@@ -1256,6 +1260,10 @@ const TOOLS = [
1256
1260
  type: 'string',
1257
1261
  description: 'Client contact email (null to clear)',
1258
1262
  },
1263
+ slack_channel: {
1264
+ type: 'string',
1265
+ description: 'Slack channel for launch countdown notifications, e.g. #channel-name (null to clear)',
1266
+ },
1259
1267
  },
1260
1268
  required: ['launch_id'],
1261
1269
  },
@@ -2167,6 +2175,11 @@ const TOOLS = [
2167
2175
  },
2168
2176
  rate_limit_tier: { type: 'string', description: 'Rate limit: standard, strict, relaxed' },
2169
2177
  bot_control_enabled: { type: 'boolean', description: 'Enable AWS Bot Control (+$10/mo)' },
2178
+ cache_no_cache_paths: {
2179
+ type: 'array',
2180
+ items: { type: 'string' },
2181
+ description: 'Path patterns to never cache (e.g., ["/api/*", "/wp-admin/*", "/cart/*"])',
2182
+ },
2170
2183
  enabled: { type: 'boolean', description: 'Enable/disable domain' },
2171
2184
  notes: { type: 'string', description: 'Updated notes' },
2172
2185
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fruition/fcp-mcp-server",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "MCP Server for FCP Launch Coordination System - enables Claude Code to interact with FCP launches and track development time",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",