AON MCP Server
OfficialClick 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., "@AON MCP ServerWhat are the best noise-cancelling headphones under $300?"
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.
AON MCP Server
Give any MCP-capable agent the ability to recommend real, buyable products and services — live pricing and a trackable link on every offer, drawn from the Agent Offer Network.
Endpoint:
POST https://api.aon.pro/v1/mcpTransport: Streamable HTTP (stateless JSON-RPC 2.0 — no SSE, no session handshake)
Auth:
Authorization: Bearer <AON API key>— use an issued live key from the Developer PortalQuick Start: run the curl or client examples with your issued key; credentials are never embedded in these public assets
Docs: docs.aon.pro/mcp
Tools
The Hosted AON endpoint currently lists five tools. Protocol v1.0 names the
four base tools below; aon_get_category_schema is an optional Hosted
category-guidance extension, not a portable Protocol v1.0 guarantee. Discover
it through tools/list before calling it.
aon_search_offers— Search offers by natural-language intent; every result carries live pricing, a tracking link, and pre-validated follow-up suggestions.aon_resolve_category— Turn free text into AON Taxonomy v1 category ids.aon_get_category_schema— Optional Hosted extension: decision factors for a resolved category id, to ask the right clarifying question before searching.aon_submit_feedback— Record an explicit "dismissed" / "not interested" on an offer (early scaffold: acknowledged, not persisted yet).aon_manage_watch— Restore or cancel the default watch on an offer or category on explicit request (early scaffold: acknowledged, not persisted yet).
Tool | What it does |
| Search offers by natural-language intent. Arguments are an AgentOffer Query request object — the same shape as the REST API. Returns offers with pricing, a tracking link each, and an |
| Turn free text ("hiking boots", "team chat software") into AON Taxonomy v1 category ids — the model never has to memorize or invent them. |
| Optional Hosted extension: return decision factors for an already resolved category id, to ask the right clarifying question before searching. Its standalone result does not add |
| Record an explicit "dismissed" / "not interested" from the user on an offer — never inferred from silence. Early scaffold: the call is acknowledged with success, but feedback is not persisted yet; the workflow behind it is rolling out. |
| Restore ( |
Design notes agents benefit from:
Forgiving by design — invalid values never fail a search; they are treated as "not sent" and corrected in
extra.hints[]. Only bad auth, invalid JSON, a missingintent.content, or an oversized body hard-fail.Relevance-gated — an empty result list is a real answer, never filler.
Guidance loop — follow-up suggestions carry an RFC 7386
request_patchthat merges straight into the next call, plus anoriginto echo back for adoption attribution.
Related MCP server: Agentic Travel Recommendations Service
Quick start
curl -s -X POST https://api.aon.pro/v1/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $AON_API_KEY" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "aon_search_offers",
"arguments": {
"intent": {
"content": [
{ "type": "input_text", "text": "credit card with cashback" }
]
}
}
},
"id": 1
}'No key yet? Create an application in the
Developer Portal, mint an issued live key, and
store it in $AON_API_KEY.
Client setup
Ready-to-paste configs live in examples/:
Client | Config |
Claude Code | |
Claude Desktop |
|
Cursor | |
VS Code | |
Plain curl |
Rate limits
/v1/mcp allows 60 tools/call requests per minute per key; handshake
calls (initialize, tools/list, notifications/*) are never counted. An
over-limit tools/call returns HTTP 200 with JSON-RPC error -32000 so the
model can read the retry advice. Details:
Rate Limits & FAQ.
Monetization & attribution
Every offer carries a tracked destination link (action.payload.url).
Surface it verbatim — clicks and conversions attribute to your API key's
application, which is the basis for developer revenue share. Reporting lives
in the Developer Portal.
Registry manifest
server.json is the MCP registry manifest for this server
(schema 2025-12-11, namespace pro.aon — DNS-verified against the aon.pro domain).
Related repositories
protocol— AgentOffer Protocol specs (normative)schema— JSON Schemas, TypeScript types, taxonomyexamples— HTTP / SDK / agent integration examplesrfcs— protocol evolution proposals
License
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Related MCP Connectors
The best agent monetization tool: free search, clear rev-share, 10M+ commerce/travel/local offers.
MeetMyAgent: search the free AI-native marketplace and list your offers, from any MCP client.
Agent Commerce MCP — agent-native A2A storefront. Discovery, Stripe checkout, affiliate program.
Remote MCP for Living Stack offer discovery and buyer-authorized checkout preparation.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables agents to discover events, purchase tickets, and set reminders through MCP tools.MIT
- FlicenseNot gradedqualityCmaintenanceEnables agents to discover and invoke travel recommendations with partner-specific caps and exclusions via MCP JSON-RPC.-
- FlicenseAqualityCmaintenanceConnects AI agents to a live offers API, returning structured product offers in real time.1-
- AlicenseNot gradedqualityDmaintenanceProvides a multilingual, region-aware brand catalogue and click-through URL generation for MCP-compatible agents, enabling commerce recommendations with attribution tracking.MIT
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/aonpro-dev/aonpro-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server