@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 +8 -0
- package/CHANGELOG.md +12 -0
- package/README.md +4 -1
- package/bin/cli.js +1 -1
- package/package.json +6 -2
package/.mcp.json
ADDED
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
|
[](https://www.npmjs.com/package/@prereason/mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](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
|
+
[](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.
|
|
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
|
|
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"
|