pse-edge-mcp
This server provides read-only access to end-of-day Philippine Stock Exchange (PSE) data, including company profiles, stock quotes, historical prices, financial reports, disclosures, and market indices. It minimizes impact on the upstream PSE Edge portal by caching and serving frozen data when the market is open.
Company Lookup – Search for companies by name or ticker (search_companies), validate a ticker symbol (validate_symbol), and retrieve a company's profile with sector, incorporation date, auditor, and contact info (get_company_profile).
Market & Price Data – Get the latest EOD stock quote with price, change, 52-week range, market cap (get_stock_quote); daily OHLC price history over a date range (get_price_history); PSEi and all 7 sector index levels with daily changes (get_indices); and a market-wide snapshot including index levels and disclosure feeds (get_market_summary).
Disclosures & Filings – Search company announcements by symbol, date range, or type (search_disclosures); full-text search inside disclosure attachments, limited to snippet results (search_disclosure_fulltext); and retrieve full details of a single disclosure including attachment and body HTML links by its edge number (get_disclosure).
Financial Data – Get annual and quarterly balance sheet and income statement highlights (get_financial_highlights) – note that reported units may vary, so always verify unit labels. Also retrieve declared dividends and stock rights with ex-dividend, record, and payment dates, linked to source disclosures (get_dividends_and_rights).
Communication (auth-enabled deployments only) – Send an email to the authenticated user’s own address (send_email).
Key Constraints – All data is end-of-day frozen: no upstream requests while the PSE is open (09:30–15:00 Manila time); queries during market hours return cached data or a MARKET_OPEN_NO_CACHE error. Every result includes freshness metadata (meta.as_of, meta.valid_until, meta.stale). Disclosure attachments are not downloaded or parsed; the server returns URLs for the client to fetch directly.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pse-edge-mcpshow me the price history of BDO"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pse-edge-mcp
An MCP server exposing Philippine Stock Exchange data from the PSE Edge portal — quotes, price history, disclosures, financial reports, and market data — to Claude and any other MCP client.
Unofficial. PSE Edge has no public API; this project speaks to the same endpoints the portal's own pages use. It is not affiliated with or endorsed by the PSE. Data is provided as-is for personal/research use, with no warranty.
Contents
Related MCP server: Yahoo Finance MCP Server
Features
13 read tools + 1 action tool covering quotes, price history, disclosures (metadata, full-text, and detail), company profiles, financials, dividends, indices, and market summary — plus an attachment resource, two prompts with symbol completion, and tool annotations.
Deliberately gentle on PSE Edge: every unique query hits it at most once per day, and prices follow a strict market-boundary freeze.
OAuth 2.1 + passkeys for humans (no passwords anywhere),
client_credentialsfor headless agents — both opt-in; stdio needs nothing.Postgres optional: zero-config in-memory for local stdio, or a shared cache + an ever-deepening EOD archive when
DATABASE_URLis set.Loud on drift: a nightly canary validates live pages against the real models and alerts only on failure; a restyled page raises an error, never partial data.
Multi-arch container image (amd64 + arm64), gated on necessity — the image contains exactly the runtime dependency closure and nothing else.
Quick start
Claude Desktop / Claude Code (stdio):
uvx pse-edge-mcp{
"mcpServers": {
"pse-edge": { "command": "uvx", "args": ["pse-edge-mcp"] }
}
}A hosted deployment (auth on) is a normal OAuth 2.1 protected resource — modern clients need only the URL and drive the whole flow themselves (details below):
{
"mcpServers": {
"pse-edge": { "url": "https://your-host.example.com/mcp" }
}
}Docker (HTTP + Postgres):
cp .env.example .env # set POSTGRES_PASSWORD
docker compose up --buildDesign: end-of-day prices, fetch-once everything else
Four layers, one direction of dependency. Every read goes through FreezeService.get() with an explicit per-domain policy — no tool ever touches the HTTP client directly. ★ marks the invariant the whole design exists to protect, and it guards prices only.
flowchart TD
C["MCP client"] -- "tool call" --> S["<b>server.py</b> · MCP boundary<br/>validate args · delegate · shape reply"]
S --> R["<b>repositories.py</b> · one per domain<br/>cache key · freeze read · parse · endpoint routing"]
R --> F["<b>service.py</b> · FreezeService ★<br/>3 policies · miss → fetch once"]
F --> P["<b>client.py</b> · PseEdgeClient<br/>throttled HTTPS · single-flight · 2 dialects"]
P --> E["PSE Edge<br/>edge.pse.com.ph"]★ Market-boundary freeze — prices only. A cached stock price is never refetched while the market is open (09:30–15:00 Asia/Manila, trading days) — the last close answers, flagged stale. A price nobody has ever asked for is the one exception: fetched once mid-session and served as identity + previous_close only (every session-moving field withheld), with stale: true plus a meta.note saying it is not a realtime value; the settled figures replace it after the close.
Policy | Applies to | Behaviour |
|
| A cached price is never refetched during a session; a never-cached key is fetched once and surfaces only |
| Companies, disclosures, profiles, financials, dividends, indices, summary | First ask fetches at any hour — once, deduplicated across concurrent callers; every repeat of the same query answers from storage until the next 15:00 close. |
| Disclosure detail by | The object never changes upstream. Fetched once ever; |
If PSE Edge is unreachable and an expired entry exists, tools serve it flagged meta.stale: true rather than discarding real data for an error. EDGE_UNAVAILABLE means unreachable and nothing cached.
Every data tool returns the same envelope — meta is the freshness contract:
{
"data": { /* …StockQuote… */ },
"meta": {
"as_of": "2026-08-06T15:00:00+08:00", // ISO-8601, Asia/Manila
"valid_until": "2026-08-07T15:00:00+08:00", // null when immutable
"from_cache": false,
"stale": false, // true = not a settled EOD value
"data_policy": "EOD-frozen", // "daily-refresh" / "immutable" elsewhere
"note": null // freshness caveat, e.g. "not a realtime value"
}
}Tools, resources, prompts
Tool | Description |
| Find PSE-listed companies by name or ticker |
| Cheap yes/no check that a ticker exists, with its company name and id |
| Latest EOD quote: price, change, 52-wk range, market cap, full field set |
| Daily OHLC series from Edge's chart endpoint |
| Disclosure metadata, market-wide or per company; 50/page with exact totals |
| Search the text inside disclosure attachments, with snippets |
| One disclosure's details plus attachment and body-HTML links; attachments capped at |
| Sector, incorporation, auditor, transfer agent, contacts |
| Annual + quarterly balance sheet and income statement |
| Declared dividends and stock rights, linked to their disclosures |
| PSEi and the 7 sector indices, with signed daily change |
| Index levels plus PSE Edge's homepage disclosure feeds |
| The deployed version of this MCP server itself (matches |
| Email yourself a note (auth-enabled deployments only) |
Beyond tools, the server exposes the attachment resource above, two prompts (market_recap, company_briefing(symbol) — the symbol argument autocompletes from PSE Edge's own lookup), and MCP tool annotations so hosts can auto-approve the read-only tools. It is described for the MCP Registry in server.json.
send_email is the only tool that acts rather than reads. It has no recipient argument: the message always goes to the account that authenticated the session, so it cannot be used as a relay and there is nothing for prompt injection to redirect — which matters because this server returns disclosure text the operator does not control. It appears only on deployments with auth enabled (there is no verified address otherwise), the body is escaped rather than rendered as HTML, and it is capped at 20 messages per user per day.
Disclosure tools return metadata and links only — this server never downloads or parses attachments (beyond the explicit resource read), so your MCP client can fetch the returned URLs itself if it needs the files. Note that Edge's own full-text index is partial (roughly 2023–2025 at last check), so search_disclosure_fulltext is not a substitute for search_disclosures; it reports this limit in its results.
Financial figures are returned exactly as PSE Edge prints them and are never rescaled — Edge's own units labels are inconsistent between its annual and quarterly sections, so each period reports its currency_units for you to check. Index changes are signed here even though Edge prints them unsigned (it shows direction only as a colour and an arrow).
Architecture
The layers
Layer | Owns | Never |
| Argument validation, delegation, reply shaping. Error mapping happens once in | Domain logic, cache keys, parsing, endpoint choices |
| One repository per data domain: the cache key, the freeze read, the parse, the Pydantic model. Endpoint routing lives here. | Depending on the concrete client — only on the protocols below |
|
| — |
| Pure HTTP, MCP-agnostic: token-bucket throttle, single-flight, retries; two request dialects (JSON-body POST for chart | — |
Core class map
Five repositories cover the whole tool surface. Each consumes a narrow source protocol — the concrete client satisfies all five, but no repository knows that, so each is testable with a few-line fake and no HTTP mocking.
Repository | Methods → models | Consumes | Policy / note |
|
|
|
|
|
|
|
|
|
|
| searches |
|
|
|
|
|
|
|
|
|
| — | recipient comes from the bearer token, never an argument |
Protocols and swappable implementations
One switch picks the column: DATABASE_URL unset → in-memory / Null; set → Postgres. Postgres modules import lazily, so a lean install never pays for them.
Protocol |
|
|
|
|
|
|
|
|
|
|
|
| — |
|
|
|
|
HTTP composition — built once, in asgi.py
flowchart LR
H["HealthApp<br/>/health · /health/ready"] --> A["AuthApp<br/>/oauth/* · signup · /account · /privacy"]
A --> M["AuthMiddleware<br/>bearer validation · quotas · usage"]
M --> MCP["MCP app<br/>the tool surface"]/health is liveness and never touches the database; /health/ready is readiness. Behind AuthApp: OAuthService (DCR · PKCE-only · refresh families), PasskeyService (WebAuthn + web sessions), TokenService (opaque pse_ tokens, SHA-256 at rest).
Error family — one root, mapped once in reply()
Error | Meaning |
|
|
|
|
| Edge redesigned a page — loud, never partial |
| Upstream unreachable and nothing cached |
| Retained for client compatibility; no longer raised |
| Action tool needs auth enabled |
| 20 emails / user / day |
Watchdog
A nightly canary (pse-edge-canary, plus a compose service) fetches live pages bypassing the cache and validates the same Pydantic models the repositories build — a 200 with a restyled table is exactly the failure it exists to catch. It still refuses to run while the market is open (the ★ invariant outranks it), emails PSE_OPERATOR_EMAIL only on failure, and exits non-zero so cron notices.
Golden path: one request traced
get_stock_quote("SM") after market close, cold cache:
server.py—validation.pychecks the symbol shape (bad input →INVALID_ARGUMENT), thenreply()wraps the repository call — the only place errors become MCP error payloads.QuoteRepository.quote("SM")— resolvesSM→company_idthroughCompanyRepository, picks the endpoint, builds the cache key. Tools never see any of this.FreezeService.get(key, fetch, policy="EOD-frozen")★ — fresh cache entry → serve it. Market open + cached → serve the last close flaggedstale, never refetch. Market open + never cached → fetch once, labelstale: true+notefor the whole session. Market closed + miss → fetch. Fetch fails but an expired entry exists → serve it flaggedstale.PseEdgeClient.fetch_stock_data_page(company_id)— token bucket (1 req/s), single-flight dedupe, retries. Wire dates areMM-dd-yyyy; the JSON-vs-form dialect is chosen per endpoint.parsers.py→StockQuote— HTML → dict → validated Pydantic model. Any drift in Edge's markup raisesEndpointChangedError.cache.py/archive.py— the entry freezes until the next 15:00 close; daily bars archive opportunistically (a dead database never fails a read).
Connecting to a hosted server
A deployment with auth on is a normal OAuth 2.1 protected resource, so a modern MCP client needs only the URL — it discovers everything else and drives the whole flow itself.
What happens on first connect
Nothing here is manual except the two browser steps in bold.
The client
POSTs to/mcpwith no token and gets 401 carryingWWW-Authenticate: Bearer resource_metadata="…/.well-known/oauth-protected-resource". That header is the entire bootstrap: it tells the client where to look next.It fetches that document, learns which authorization server guards this resource, then reads
/.well-known/oauth-authorization-serverfor the endpoints.It registers itself at
/oauth/register(RFC 7591) — no client secret, no operator involvement, no pre-shared credentials. It gets back aclient_id.It opens
/oauth/authorizein a browser with a PKCE challenge (S256 required).The user signs up or signs in. New users land on
/signup, agree to the (deliberately tiny) data policy, give an email, and receive a link; the link shows a confirm page whose button enrolls a passkey at/enroll— the confirm step exists so a mail scanner's prefetch cannot spend the link. Returning users hit/loginand use the passkey they already have. No password exists anywhere in the system.The user approves the client on a consent screen naming it.
The browser returns to the client with a single-use code; the client exchanges it at
/oauth/tokenwith its PKCE verifier and receives an access token (15 min) and a single-use refresh token (24 h).The client calls
/mcpwithAuthorization: Bearer …and refreshes silently from then on. The user is not asked again.
client ──POST /mcp──────────────▶ 401 + WWW-Authenticate
──GET /.well-known/… ───▶ metadata
──POST /oauth/register ──▶ client_id
──GET /oauth/authorize ─▶ browser: signup/login → passkey → consent
◀───────────────────────── ?code=…
──POST /oauth/token ─────▶ access (15 min) + refresh (24 h)
──POST /mcp + Bearer ────▶ toolsRefresh tokens rotate on every use, and replaying a rotated one revokes that whole session family (RFC 9700 §4.14) — a stolen refresh token gets one use before the theft is detected and the session dies.
Headless agents (client_credentials)
For a LangGraph app, the Anthropic Messages API MCP connector, or any agent that cannot open a browser. No redirect, no passkey, no consent screen — a client id and secret.
1. Provision. Two routes, same result:
From the web (needs no shell — the practical choice on a NAS): set
PSE_ADMIN_EMAILSto your account's email, sign in, and a Machine clients panel appears on/accountwith create and revoke controls. Access is gated to that allowlist — a normal signup never sees it.From the CLI:
pse-edge-admin create-machine-client --name langgraph-app.
Either way client_id and client_secret are shown once. Only the secret's SHA-256 is stored, so it cannot be recovered — only revoked and reissued (from the same account page, or pse-edge-admin revoke-machine-client <client_id>).
2. Mint a token:
curl -s -X POST https://pse.sakayandgo.com/oauth/token \
-d grant_type=client_credentials \
-d client_id=$CLIENT_ID -d client_secret=$CLIENT_SECRET \
-d scope=mcp -d resource=https://pse.sakayandgo.com/mcp{"access_token": "pse_…", "token_type": "Bearer", "expires_in": 3600, "scope": "mcp"}HTTP Basic works too (curl -u "$CLIENT_ID:$CLIENT_SECRET"), which is what most SDKs send. No refresh token is issued — the client already holds a long-lived secret and simply re-requests when the hour is up.
3. Use it:
curl -s -X POST https://pse.sakayandgo.com/mcp \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'Revoke with pse-edge-admin revoke-machine-client <client_id>, which kills the secret, every token it minted, and the backing service account in one step.
Registering does not grant this.
/oauth/registeris open to the internet, so a client that registers itself — even declaringgrant_types: ["client_credentials"]and sending a secret — is refused withunauthorized_client. Authorization comes from aclient_typecolumn only the admin CLI writes, never from anything a registrant says about itself.
Give each agent its own machine client: quotas are per client, so a runaway job throttles itself, and revoking one does not touch the others.
Building an app on top of this? examples/langgraph_client.py is a working client for the multi-tenant case — your app authenticates as itself with one machine client, your users never see this server. It carries an httpx.Auth that mints and refreshes the 1-hour token (verified: concurrent calls mint once; a stale token recovers on 401), plus the agent instructions worth pasting into a system prompt. Note it needs mcp<2 — langchain-mcp-adapters does not yet import against the 2.x SDK.
If your client does not do OAuth yet
The operator issues a token directly, and the user pastes it into a header. Same server, no browser:
pse-edge-admin create-user you@example.com
pse-edge-admin issue-token you@example.com --note laptop # plaintext shown oncecurl -X POST https://your-host.example.com/mcp \
-H "Authorization: Bearer pse_..." \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'This is also the only route on a LAN-only deployment: passkeys need a secure context, so plain http cannot enroll one.
What a user can see and remove
/account shows everything held about them — email, passkeys, active tokens, hourly usage counts. POST /account/delete erases it immediately and completely, with no approval step. /privacy states what is collected and for how long. Usage counts are deleted after 90 days.
Run with Docker Compose (HTTP + Postgres)
cp .env.example .env # set POSTGRES_PASSWORD
docker compose up --buildServes streamable HTTP on :8000, with Postgres 18 as shared cache and archive. A one-shot migrate service applies the Alembic schema before the app starts.
HTTP mode is stateless with plain JSON responses by default. This server is read-only tools over data the freeze policy holds still, and it uses none of the features MCP sessions exist to enable — no notifications, no resource subscriptions, no sampling, no elicitation, no progress — so every request is self-contained. That means any replica can serve any request behind plain round-robin: no sticky routing, no per-session memory, no event store. Without SSE, idle clients hold no connection either. Use --stateful if you need MCP sessions and --sse for event-stream framing; they are independent flags.
Bearer auth and quotas (opt-in)
Set PSE_AUTH_REQUIRED=1 (needs DATABASE_URL) and every HTTP request must carry Authorization: Bearer <token>. Users arrive either way described in Connecting to a hosted server — self-service through OAuth 2.1 and passkeys, or an operator-issued token. PKCE is mandatory (S256 only) and no password exists anywhere in the system.
Tokens are opaque and stored only as SHA-256 hashes. Revocation (pse-edge-admin revoke-token … / disable-user …) takes effect within the validation cache's TTL — 60 s by default, which is precisely the revocation-latency budget. Per-user quotas (default 60/min, 2,000/day, overridable per user) are counted in-process and answer HTTP 429 with Retry-After; with N replicas the effective ceiling is up to N× nominal, which is fine for abuse prevention. stdio mode never authenticates — it runs on your own machine.
Operators get pse-edge-admin delete-user and purge-usage (cron the latter daily), and delete-user uses the same erasure code path as the user's own delete button, so the two cannot drift apart.
Postgres is optional. Without DATABASE_URL the server uses an in-memory cache and keeps no archive — the zero-config path for local stdio use. With it set, replicas share one cache (the freeze still means one upstream fetch per boundary however many processes run), and every read accumulates into an EOD archive (daily bars and disclosures) that deepens over time at zero extra cost to PSE Edge. Nothing crawls — the archive fills solely from fetches you already made.
# applying the schema by hand, outside compose
DATABASE_URL=postgresql+asyncpg://user:pass@host/db uv run alembic upgrade headConfiguration
Everything is environment-sourced into one frozen Settings object. Two variables change the shape of the system: DATABASE_URL picks the storage column, and PSE_AUTH_REQUIRED turns on the whole auth stack (and the send_email tool with it).
Variable | Default | What it governs |
Upstream — protect PSE Edge | ||
|
| Upstream portal root |
|
| Token-bucket rate toward Edge |
|
| Per-request timeout and retries |
Storage — the one switch | ||
| unset | Unset → in-memory cache + |
|
| Connection pool |
Auth — opt-in, needs | ||
|
| Bearer auth + quotas + OAuth/passkeys; stdio never authenticates |
|
| The revocation-latency budget — nothing else |
|
| Per-user quotas, counted in-process (per worker) |
|
| Real external https URL — drives WebAuthn rp_id, email links, OAuth issuer; a wrong value breaks passkeys |
|
| Token lifetimes; the refresh token is single-use and reuse revokes the family. |
| empty | Operator allowlist for the |
Email & operations | ||
| unset | Unset → |
|
| Sender address (ZeptoMail verifies exact domains) |
| unset | Canary failure alerts — failures only, never "all fine" |
|
| Usage log retention (aggregated per user-hour, never per request) |
Server | ||
|
| MCP session & response mode |
|
| Both formatters timestamp and redact; INFO logs refusals only |
Container image
Every merge to main publishes an image:
docker pull ghcr.io/phdwight/pse-edge-mcp:latest # or :<version>, :sha-<sha>
# multi-arch: linux/amd64 and linux/arm64
docker run --rm -p 8000:8000 ghcr.io/phdwight/pse-edge-mcp:latest # streamable HTTP
docker run --rm -i --entrypoint pse-edge-mcp ghcr.io/phdwight/pse-edge-mcp:latest # stdioBoth architectures are gated before publishing, on native runners. The rule is necessity, not size: the image must contain exactly the resolved runtime dependency closure and nothing else — no build toolchain, no package manager, no dev dependencies, no bytecode caches, no source tree — plus a secret scan and a smoke test that the server starts and registers its tools. A stray dependency fails the build; a large but genuinely required one does not. Image size is reported for information and never gated.
Production
One file, compose.nas.yaml, for a NAS or any single Docker host, in two stages. It pulls the published image rather than building, so production runs the artifact CI gated. Stage 1 is LAN-only and needs nothing from Cloudflare:
docker compose -f compose.nas.yaml up -d # http://<nas-ip>:8200
docker compose -f compose.nas.yaml --profile tunnel up -d # + public hostnameThe tunnel profile starts cloudflared, which dials out — so there is no port forwarding, no ACME, and nothing for CGNAT to break; Cloudflare terminates TLS at its edge. Set CLOUDFLARE_TUNNEL_TOKEN, PSE_PUBLIC_URL and PSE_LAN_BIND=127.0.0.1 in .env alongside it — the last moves the stage 1 LAN port onto loopback, which is the only way to unpublish it, because Compose merges ports additively.
Both stages give auth on by default, daily backups, a daily retention purge, and no published database port. Health probes are /health (liveness) and /health/ready (readiness). The app is importable for other servers: uvicorn pse_edge_mcp.asgi:app --workers 4.
See docs/deploy.md for the full guide, including the two settings most worth getting right: pin PSE_IMAGE_TAG rather than tracking :latest, and make PSE_PUBLIC_URL the real external https URL, because WebAuthn binds every passkey to the origin it was enrolled under.
Development
uv sync --all-extras
uv run pytest
uv run ruff check .Tests run entirely against recorded fixtures — CI never touches PSE Edge.
New to the codebase? docs/walkthrough.md is the developer and architect walkthrough: the request lifecycle, the freeze policy, the layering, how to add a tool or a whole data domain, and a symptom-to-cause debugging table. Also available as a PDF. For the one-page visual version of the Architecture section — classes, protocols, the data path, the config matrix — open docs/reference-card.html in any browser; it is fully self-contained and works offline. Every design decision is recorded in docs/plan.md, and the verified endpoint map lives in docs/endpoints.md.
Contributing
Issues and pull requests are welcome. The ground rules:
Work lands on
developand reachesmainby pull request;mainis protected and requires all three CI checks (test,image (amd64),image (arm64)).Tests never touch PSE Edge — new endpoints need new recorded fixtures in
tests/fixtures/.New tools follow the layering above: a new data domain is a new repository plus thin tools, never fetch/parse logic in
server.py.Bumping
versioninpyproject.tomlmakes the next merge cut a GitHub Release with a matching immutable image tag; rollCHANGELOG.mdin the same PR.
License
MIT
MCP Registry identity: mcp-name: io.github.phdwight/pse-edge-mcp
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceProvides 12 tools to scrape and access Pakistan Stock Exchange market data, including current prices, historical data, intraday, sector search, and volume analysis.5MIT
- Flicense-qualityDmaintenanceA lightweight MCP server for accessing Yahoo Finance data, providing stock prices, history, company information, and financial statements.
- AlicenseBqualityCmaintenanceProvides tools to access Vietnam stock market data, including stock prices, financial statements, and market statistics.361MIT
- Alicense-qualityBmaintenanceProvides live Pakistan Stock Exchange data including quotes, intraday and end-of-day history, indices, company fundamentals, dividends, and announcements via the Model Context Protocol, with no API key required.MIT
Related MCP Connectors
Banxico MCP — Banco de México (Mexico's central bank) via the SIE API.
Taiwan Stock Exchange (TWSE) open data as MCP tools: stock quotes, ETF data, 140+ public datasets.
Twelve Data MCP: real-time & historical market data (stocks, crypto, forex, etc).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/phdwight/pse-edge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server