@prereason/mcp 0.1.5 → 0.1.6

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 (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +24 -21
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.6 (2026-02-25)
4
+
5
+ - Fix description wording: replace "trend signals" with "trend interpretation"
6
+ - Add SECURITY.md with vulnerability reporting policy
7
+ - Add GitHub Actions CI workflow for provenance-signed npm publishing
8
+ - Public source repo at https://github.com/PreReason/mcp
9
+
3
10
  ## 0.1.3 (2026-02-21)
4
11
 
5
12
  - Add `PREREASON_API_KEY` environment variable support (fixes Windows `cmd.exe` quoting crash)
package/README.md CHANGED
@@ -5,13 +5,34 @@
5
5
 
6
6
  MCP server for [PreReason](https://www.prereason.com): pre-analyzed Bitcoin and macro financial intelligence.
7
7
 
8
- PreReason returns interpreted signals (bullish/bearish/neutral), trend analysis, regime classification, confidence scores, percentile rankings, and cross-asset correlations. Use it when your task needs market context for decision-making, not raw price feeds.
8
+ PreReason returns pre-analyzed market context: trend interpretation, momentum analysis, cross-asset correlations, and more. Use it when your task needs to understand market conditions for decision-making, not raw price feeds.
9
9
 
10
10
  ## Quick Start
11
11
 
12
12
  ### Option 1: Direct HTTP (Claude Code, Cursor, Windsurf, etc.)
13
13
 
14
- Clients that support remote MCP servers can connect directly to `https://api.prereason.com/api/mcp` with no bridge package needed. See [Other MCP Clients](#other-mcp-clients) below.
14
+ Clients that support remote MCP servers can connect directly with no bridge package needed.
15
+
16
+ ```bash
17
+ # Claude Code (CLI one-liner)
18
+ claude mcp add prereason --transport http https://api.prereason.com/api/mcp
19
+ ```
20
+
21
+ Or add to `.mcp.json` / your client's MCP config:
22
+
23
+ ```json
24
+ {
25
+ "mcpServers": {
26
+ "prereason": {
27
+ "type": "http",
28
+ "url": "https://api.prereason.com/api/mcp",
29
+ "headers": {
30
+ "Authorization": "Bearer YOUR_API_KEY"
31
+ }
32
+ }
33
+ }
34
+ }
35
+ ```
15
36
 
16
37
  ### Option 2: stdio bridge (Claude Desktop and other stdio-only clients)
17
38
 
@@ -138,25 +159,7 @@ If you still see this error, ensure you're using the `env` block (not `--header`
138
159
 
139
160
  ## Other MCP Clients
140
161
 
141
- Clients that support remote HTTP servers (Claude Code, Cursor, Windsurf, and others) can connect directly without this bridge package:
142
-
143
- ```bash
144
- # Claude Code (CLI)
145
- claude mcp add prereason --transport http https://api.prereason.com/api/mcp
146
-
147
- # Or add to .mcp.json
148
- {
149
- "mcpServers": {
150
- "prereason": {
151
- "type": "http",
152
- "url": "https://api.prereason.com/api/mcp",
153
- "headers": {
154
- "Authorization": "Bearer YOUR_API_KEY"
155
- }
156
- }
157
- }
158
- }
159
- ```
162
+ If your client supports remote HTTP servers, use [Quick Start Option 1](#option-1-direct-http-claude-code-cursor-windsurf-etc) above. The stdio bridge package is only needed for clients that require stdio transport (e.g. Claude Desktop).
160
163
 
161
164
  ## CLI Usage
162
165
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@prereason/mcp",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
- "description": "MCP server for pre-analyzed Bitcoin and macro financial intelligence. Trend signals, regime classification, confidence scores, and 17 context templates.",
5
+ "description": "MCP server for pre-analyzed Bitcoin and macro financial intelligence. 17 context templates with trend interpretation, momentum analysis, and cross-asset correlations.",
6
6
  "bin": {
7
7
  "prereason-mcp": "./bin/cli.js"
8
8
  },