@prereason/mcp 0.1.13 → 0.2.1

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/.mcp.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "mcpServers": {
3
+ "prereason": {
4
+ "type": "http",
5
+ "url": "https://api.prereason.com/api/mcp"
6
+ }
7
+ }
8
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1 (2026-03-30)
4
+
5
+ - Add .mcp.json for Open Plugins / cursor.directory discovery
6
+ - Include .mcp.json in npm package files
7
+
8
+ ## 0.2.0 (2026-03-21)
9
+
10
+ - Add Glama deployment support (Dockerfile build, inspection, release)
11
+ - Add build script for container image builds
12
+ - Add 6 MCP prompt templates (daily_market_briefing, risk_check, mining_profitability, macro_regime_check, correlation_scanner, weekly_recap)
13
+ - Add 2 MCP resource catalogs (briefing_catalog, metric_catalog)
14
+
3
15
  ## 0.1.12 (2026-03-17)
4
16
 
5
17
  - Switch publish workflow to OIDC trusted publisher (no NPM_TOKEN needed)
package/README.md CHANGED
@@ -2,11 +2,14 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@prereason/mcp.svg)](https://www.npmjs.com/package/@prereason/mcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5
+ [![PreReason/mcp MCP server](https://glama.ai/mcp/servers/PreReason/mcp/badges/score.svg)](https://glama.ai/mcp/servers/PreReason/mcp)
5
6
 
6
7
  MCP server for [PreReason](https://www.prereason.com) — the Context API for financial agents.
7
8
 
8
9
  PreReason returns pre-reasoned market briefings: trend signals, regime classification, confidence scores, cross-asset correlations, and causal narratives. Use it when your agent needs to reason about market conditions, not parse raw price feeds.
9
10
 
11
+ [![prereason-mcp MCP server](https://glama.ai/mcp/servers/PreReason/mcp/badges/card.svg)](https://glama.ai/mcp/servers/PreReason/mcp)
12
+
10
13
  ## Quick Start
11
14
 
12
15
  ### Option 1: Direct HTTP (Claude Code, Cursor, Windsurf, etc.)
@@ -187,4 +190,4 @@ npx @prereason/mcp --help
187
190
 
188
191
  ## License
189
192
 
190
- MIT
193
+ MIT
package/bin/cli.js CHANGED
@@ -22,7 +22,7 @@ import { StreamableHTTPClientTransport } from '@modelcontextprotocol/sdk/client/
22
22
 
23
23
  // Keep in sync with package.json on each release
24
24
  const PKG_NAME = '@prereason/mcp';
25
- const PKG_VERSION = '0.1.12';
25
+ const PKG_VERSION = '0.2.0';
26
26
  const DEFAULT_URL = 'https://api.prereason.com/api/mcp';
27
27
 
28
28
  // --- Help / Version ---
package/package.json CHANGED
@@ -1,17 +1,21 @@
1
1
  {
2
2
  "name": "@prereason/mcp",
3
- "version": "0.1.13",
3
+ "version": "0.2.1",
4
4
  "mcpName": "com.prereason/mcp",
5
5
  "type": "module",
6
6
  "description": "MCP server for PreReason — the Context API for financial agents. 17 pre-reasoned market briefings with trend signals, regime classification, confidence scores, and cross-asset correlations.",
7
7
  "bin": {
8
8
  "prereason-mcp": "./bin/cli.js"
9
9
  },
10
+ "scripts": {
11
+ "build": "echo 'Build complete'"
12
+ },
10
13
  "files": [
11
14
  "bin",
12
15
  "README.md",
13
16
  "LICENSE",
14
- "CHANGELOG.md"
17
+ "CHANGELOG.md",
18
+ ".mcp.json"
15
19
  ],
16
20
  "dependencies": {
17
21
  "@modelcontextprotocol/sdk": "1.27.1"