stock-scanner-mcp 1.16.1 → 1.16.3
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 +7 -1
- package/dist/chunk-5IWY6HOQ.js +3995 -0
- package/dist/index.js +10 -2423
- package/dist/sidecar/index.js +507 -723
- package/docs/sidecar-openapi.json +4780 -0
- package/package.json +7 -4
- package/dist/chunk-T5IF6777.js +0 -1646
package/README.md
CHANGED
|
@@ -393,11 +393,17 @@ Any MCP client that supports stdio servers can run this package. Use the same JS
|
|
|
393
393
|
|
|
394
394
|
## HTTP Sidecar
|
|
395
395
|
|
|
396
|
-
An optional HTTP server exposing all tools as REST endpoints for non-MCP integrations (
|
|
396
|
+
An optional HTTP server exposing all tools as REST endpoints for non-MCP integrations (GPT Actions, chat UIs, LLM pipelines). It includes an **OpenAPI 3.1** specification for automated tool discovery.
|
|
397
397
|
|
|
398
398
|
```bash
|
|
399
399
|
npx stock-scanner-sidecar # Start on port 3200
|
|
400
400
|
npx stock-scanner-sidecar --port 8080 # Custom port
|
|
401
|
+
|
|
402
|
+
# Access the OpenAPI spec
|
|
403
|
+
curl http://localhost:3200/openapi.json
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
See [Sidecar HTTP API](wiki-repo/Sidecar-HTTP-API.md) for endpoint details.
|
|
401
407
|
```
|
|
402
408
|
|
|
403
409
|
55 endpoints including `/tradingview/quote`, `/options/chain`, `/frankfurter/convert`, and more. See [wiki](https://github.com/yyordanov-tradu/stock-scanner-mcp/wiki/Sidecar-HTTP-API) for the full route table.
|