investbuddy-mcp-server 1.1.0 → 1.2.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.
package/README.md CHANGED
@@ -4,7 +4,7 @@ AI-powered stock predictions with 79.86% validated accuracy for Claude Desktop.
4
4
 
5
5
  ## Validation
6
6
 
7
- - ✅ **79.86% Win Rate** - Independently validated using walk-forward methodology
7
+ - ✅ **79.86% Directional Accuracy** - Independently validated using walk-forward methodology
8
8
  - ✅ **12,901 Predictions** - Tested on 2 years of data (2023-2025)
9
9
  - ✅ **30 S&P 100 Stocks** - Diverse portfolio across sectors
10
10
  - ✅ **Sharpe Ratio: 2.34** - Statistically significant (p < 0.000001)
package/index.js CHANGED
@@ -43,7 +43,7 @@ const TOOLS = [
43
43
  },
44
44
  {
45
45
  name: 'discover_stocks',
46
- description: 'Discover high-potential investment opportunities based on AI predictions',
46
+ description: 'Discover high-potential investment opportunities based on AI predictions. For general "which stocks" queries, use min_confidence: 0.45-0.5. Use 0.55-0.6 only for "high-conviction" or "best" requests. Use 0.7+ only for "safest" or "most confident" queries.',
47
47
  inputSchema: {
48
48
  type: 'object',
49
49
  properties: {
@@ -54,8 +54,8 @@ const TOOLS = [
54
54
  },
55
55
  min_confidence: {
56
56
  type: 'number',
57
- description: 'Minimum prediction confidence (0-1)',
58
- default: 0.7
57
+ description: 'Minimum prediction confidence (0-1). Default 0.45 for general queries, 0.55 for high-conviction, 0.7 for safest picks.',
58
+ default: 0.45
59
59
  },
60
60
  limit: {
61
61
  type: 'number',
@@ -197,17 +197,21 @@ async function handleMessage(message) {
197
197
  switch (method) {
198
198
  case 'initialize':
199
199
  result = {
200
- protocolVersion: '2024-11-05',
200
+ protocolVersion: '2025-06-18',
201
201
  capabilities: {
202
202
  tools: {}
203
203
  },
204
204
  serverInfo: {
205
205
  name: 'investbuddy-mcp',
206
- version: '1.0.0'
206
+ version: '1.2.0'
207
207
  }
208
208
  };
209
209
  break;
210
210
 
211
+ case 'notifications/initialized':
212
+ // This is a notification, no response needed
213
+ return;
214
+
211
215
  case 'tools/list':
212
216
  result = { tools: TOOLS };
213
217
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "investbuddy-mcp-server",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "mcpName": "io.github.danielrz/investbuddy",
5
5
  "description": "Model Context Protocol server for InvestBuddy AI - Stock predictions with 79.86% accuracy",
6
6
  "main": "index.js",
package/server.json CHANGED
@@ -3,12 +3,12 @@
3
3
  "name": "io.github.danielrz/investbuddy",
4
4
  "description": "AI-powered stock predictions with 79.86% accuracy. 10-day forecasts & portfolio analysis.",
5
5
  "websiteUrl": "https://www.investbuddy.ai",
6
- "version": "1.0.8",
6
+ "version": "1.1.0",
7
7
  "packages": [
8
8
  {
9
9
  "registryType": "npm",
10
10
  "identifier": "investbuddy-mcp-server",
11
- "version": "1.0.8",
11
+ "version": "1.1.0",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  },