@prereason/mcp 0.1.13 → 0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0 (2026-03-21)
4
+
5
+ - Add Glama deployment support (Dockerfile build, inspection, release)
6
+ - Add build script for container image builds
7
+ - Add 6 MCP prompt templates (daily_market_briefing, risk_check, mining_profitability, macro_regime_check, correlation_scanner, weekly_recap)
8
+ - Add 2 MCP resource catalogs (briefing_catalog, metric_catalog)
9
+
3
10
  ## 0.1.12 (2026-03-17)
4
11
 
5
12
  - Switch publish workflow to OIDC trusted publisher (no NPM_TOKEN needed)
package/README.md CHANGED
@@ -2,6 +2,7 @@
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
 
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,12 +1,15 @@
1
1
  {
2
2
  "name": "@prereason/mcp",
3
- "version": "0.1.13",
3
+ "version": "0.2.0",
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",