Install
$ agentstack add mcp-makeev-alphai-postman ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AlphaAI — Postman Collection
Official Postman collection for the AlphaAI REST API — relevance-scored, ticker-linked financial news (plus SEC Form 4 insider data) for AI agents and trading bots.
Every article is enriched at ingest with per-ticker impact analysis, a category, and a 1–10 relevance score. Consume it here over REST, or as an MCP server in Claude Desktop / Cursor / any agent.
[](https://god.gw.postman.com/run-collection/2739899-cd75bd32-0a53-447d-9d4f-e128a59f6a6d?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D2739899-cd75bd32-0a53-447d-9d4f-e128a59f6a6d%26entityType%3Dcollection%26workspaceId%3Dd70a2107-3c17-4b47-926b-897627b18df5)
Live on the Postman API Network → AlphaAI — Financial News REST API
- 🔑 Free tier, no card — 20 req/min · 100/day
- 📖 Live docs & playground —
- 🧭 OpenAPI 3.1 spec — · try it in-browser via Swagger UI
- 💳 Pricing — Free · Basic $2.99/mo · Pro $9.99/mo ()
Quickstart
- Get an API key — sign up at alphai.io and create one at
/account/api-keys. Keys look likeak_live_…. - Import into Postman — import both files from this repo:
AlphaAI.postman_collection.json(the requests)AlphaAI.postman_environment.json(thebaseUrl+bearerTokenvariables)
- Select the "AlphaAI — Production" environment, paste your key into the
bearerTokenvariable, and hit Send on any request.
That's it — auth is set at the collection level (Authorization: Bearer {{bearerToken}}) and baseUrl points at https://api.alphai.io, so every request just works.
# The same call outside Postman:
curl -H "Authorization: Bearer ak_live_…" "https://api.alphai.io/api/news/?symbol=NVDA&min_relevance=7"
Endpoints
News
| Request | Path | |---|---| | List news (cursor-paginated) | GET /api/news/ | | Trending news (last 48h) | GET /api/news/trending/ | | Insider-transaction news (SEC Form 4) | GET /api/news/insider/ | | Get a news article by UID | GET /api/news/{uid}/ | | Articles related to one article | GET /api/news/{uid}/related/ |
Symbols
| Request | Path | |---|---| | List active tickers | GET /api/symbols/ | | Symbol detail | GET /api/symbols/{ticker}/ | | 7-day AI sentiment rollup | GET /api/symbols/{ticker}/sentiment-summary/ | | 30-day insider rollup | GET /api/symbols/{ticker}/insider-summary/ | | Related tickers (peers) | GET /api/symbols/{ticker}/peers/ | | Stock directory | GET /api/symbols/directory/ | | Sector's most-covered tickers | GET /api/symbols/sectors/{slug}/ |
Auth & rate limits
Send Authorization: Bearer ak_live_… on every request to api.alphai.io. Traffic is metered per account on two layers — a per-minute burst cap and a per-day volume cap; a request passes only if both are under budget:
| Tier | Per minute | Per day | Archive depth | |---|---|---|---| | Free | 20 | 100 | 30 days | | Basic | 60 | 10,000 | 90 days | | Pro | 150 | 100,000 | full |
Every response carries X-RateLimit-Limit / -Remaining / -Reset (the daily layer). A 429 names your tier, its caps, and an upgrade hint. Full semantics live in the OpenAPI spec and on /developers.
Keeping the collection in sync
The collection is generated from the canonical OpenAPI 3.1 spec (openapi.yaml, mirrored here from the live /api/schema/) with Postman's official converter:
npx openapi-to-postmanv2 -s openapi.yaml -o AlphaAI.postman_collection.json -p \
-O folderStrategy=Tags,requestParametersResolution=Example
Links
- Postman API Network —
- Developers / playground —
- Swagger UI (try endpoints in-browser) —
- OpenAPI 3.1 spec —
- MCP server —
- Changelog —
- Contact —
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: makeev
- Source: makeev/alphai-postman
- License: MIT
- Homepage: https://alphai.io/developers
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.