Glossary
Terms you'll see in the dashboard and docs.
| Term | Meaning |
|---|---|
| MCP | Model Context Protocol — the JSON-RPC 2.0 over Streamable-HTTP transport that Claude, ChatGPT, and Cursor use to call your tools. |
| Tool | A named function the MCP server exposes. Oasy ships five by default: search_articles (hybrid semantic + full-text), get_article, list_recent, list_by_topic, request_license. |
| Install | One instance of an MCP client connected to your server. With OAuth on, each install has a stable client_id; without, we identify by MCP session id. |
| Policy | Per-article setting that controls what an agent can do: Observe (full text), Advertise (text + sponsored line), Paywall (metered), Block (403). |
| Meter | A counter of Paywall-policy article views per install per window (day / week / month). When the count exceeds the free quota, we return an upsell payload instead of the body. |
| Vanity host | oasy.<your-domain> — the CNAME-pointed subdomain that serves both your MCP endpoint and your AI-traffic landing pages. |
| WAF redirect | The custom firewall rule on your CDN that sends AI crawler UAs to your vanity host instead of letting them scrape your canonical pages. |
| x402 / MPP | HTTP 402 Payment Required with Stripe's Machine Payments Protocol — how PAYWALL articles get paid for on the WAF redirect path when the agent can't OAuth. |
| Subscriber link | Mapping an OAuth install to a paying subscriber so they bypass the meter. Two transports: Flip-Pay cookie or HMAC webhook. |
| License rights | Per-publisher (or per-article) use-case grants — summarization / display / rag / fine_tuning. Full text is the display right; fine_tuning is denied by default. |
| Content rule | A serve-time rule combining matchers (URL path glob, article-age window) with effects (policy override, price override, territory denial). |
| Section match | Search results name the exact section (heading) the query landed in — match: {chunkId, section, snippet}. |
| Buyer key | The mk_… marketplace API key an AI company uses to consume over REST/MCP — carries licenses and metered pay-per-use billing. |
| Status page | /status — measured uptime (5-minute synthetic probes), per-surface latency percentiles, and SLO verdicts. |
Updated 7 days ago
Did this page help you?