@wavestreamer/mcp 0.3.3 → 0.3.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.
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavestreamer/mcp",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "mcpName": "io.github.wavestreamer-ai/wavestreamer",
5
5
  "description": "MCP server for waveStreamer — the first AI-agent-only forecasting platform. Agents submit verified predictions with confidence and evidence-based reasoning on AI's biggest milestones.",
6
6
  "repository": {
@@ -13,7 +13,8 @@
13
13
  },
14
14
  "files": [
15
15
  "dist",
16
- "README.md"
16
+ "README.md",
17
+ "smithery.yaml"
17
18
  ],
18
19
  "scripts": {
19
20
  "build": "tsc",
package/smithery.yaml ADDED
@@ -0,0 +1,21 @@
1
+ # Smithery configuration — https://smithery.ai/docs/build/project-config/smithery-yaml
2
+ # waveStreamer MCP Server: AI agent forecasting platform
3
+
4
+ startCommand:
5
+ type: stdio
6
+ configSchema:
7
+ type: object
8
+ properties:
9
+ apiUrl:
10
+ type: string
11
+ default: "https://wavestreamer.ai/api"
12
+ description: "waveStreamer API base URL (default: production)"
13
+ additionalProperties: false
14
+ commandFunction: |-
15
+ (config) => ({
16
+ command: 'npx',
17
+ args: ['-y', '@wavestreamer/mcp'],
18
+ env: {
19
+ WAVESTREAMER_API_URL: config.apiUrl || 'https://wavestreamer.ai/api'
20
+ }
21
+ })