stock-scanner-mcp 1.17.0 → 1.17.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/README.md +11 -0
- package/docs/sidecar-openapi.json +1 -1
- package/package.json +1 -1
- package/skills/README.md +2 -0
package/README.md
CHANGED
|
@@ -52,8 +52,19 @@ This gives you **46 tools** immediately with no API keys. API keys are optional
|
|
|
52
52
|
|
|
53
53
|
Restart Claude Desktop after saving. Claude Code picks up the config automatically.
|
|
54
54
|
|
|
55
|
+
> **Claude Code shortcut — install as a plugin instead of Steps 1 and 2.** If you use Claude Code, skip the manual config above and install everything with two commands:
|
|
56
|
+
> ```
|
|
57
|
+
> /plugin marketplace add yyordanov-tradu/stock-scanner-mcp
|
|
58
|
+
> /plugin install stock-scanner@tradu-marketplace
|
|
59
|
+
> ```
|
|
60
|
+
> Run `/reload-plugins`, then `/mcp` — you should see the `stock-scanner` server listed as connected. The first launch runs `npx -y stock-scanner-mcp`, which downloads the package once (then it is cached). The plugin enables the workspace by default (data is stored in `~/.stock-scanner-mcp`) and passes the optional API keys (`FINNHUB_API_KEY`, `ALPHA_VANTAGE_API_KEY`, `FRED_API_KEY`) through from your environment; modules without a key are skipped automatically.
|
|
61
|
+
>
|
|
62
|
+
> **The plugin already bundles the skills — do NOT run Step 2.** All 19 skills ship with the plugin and load under the `stock-scanner:` namespace, e.g. `/stock-scanner:analyze-stock AAPL`, `/stock-scanner:morning-briefing`, `/stock-scanner:setup-market-workspace`. Running the Step 2 installer as well copies a second, unprefixed set into `~/.claude/skills/`, and the two collide — Step 2 is only for the manual (non-plugin) install. After installing, go straight to Step 3, using the namespaced command: `/stock-scanner:setup-market-workspace`.
|
|
63
|
+
|
|
55
64
|
### Step 2 — Install the trading skills
|
|
56
65
|
|
|
66
|
+
> Skip this step if you installed via the plugin above — the plugin already bundles these skills (as `stock-scanner:<name>`). This step is only for the manual config in Step 1.
|
|
67
|
+
|
|
57
68
|
Run this command in your terminal:
|
|
58
69
|
|
|
59
70
|
```bash
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Stock Scanner Sidecar API",
|
|
5
5
|
"description": "REST API for stock and crypto market data, SEC filings, and technical analysis. This is the HTTP sidecar for the stock-scanner-mcp server.",
|
|
6
|
-
"version": "1.17.
|
|
6
|
+
"version": "1.17.1",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Yordan Yordanov",
|
|
9
9
|
"url": "https://github.com/yyordanov-tradu/stock-scanner-mcp"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stock-scanner-mcp",
|
|
3
3
|
"mcpName": "io.github.yyordanov-tradu/stock-scanner-mcp",
|
|
4
|
-
"version": "1.17.
|
|
4
|
+
"version": "1.17.1",
|
|
5
5
|
"description": "MCP server providing Claude Code with real-time stock and crypto market data, SEC filings, insider trades, and technical analysis",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
package/skills/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Ready-made trading workflows that orchestrate [stock-scanner-mcp](https://www.np
|
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
|
+
> **Installed the Claude Code plugin?** You already have these skills — the plugin bundles them and loads them under the `stock-scanner:` namespace (e.g. `/stock-scanner:morning-briefing`). Skip the installer below; it is only for the manual MCP-server setup.
|
|
8
|
+
|
|
7
9
|
**Prerequisites:** stock-scanner-mcp configured as an MCP server in Claude Code.
|
|
8
10
|
|
|
9
11
|
```bash
|