Connect the client
Add the hosted MCP URL to Codex, Claude Code, Cursor, or any Streamable HTTP client.
Search games, inspect SKUs, quote totals, create confirmed orders, and track fulfillment through one MCP endpoint built for AI clients.
MCP Server
codex mcp add manabuy --url http://agents.manabuy.com/mcp
Or add to codex.toml
[mcp_servers.manabuy]
url = "http://agents.manabuy.com/mcp"
MCP Server
claude mcp add manabuy --transport http http://agents.manabuy.com/mcp
.cursor/mcp.json
{
"mcpServers": {
"manabuy": { "url": "http://agents.manabuy.com/mcp" }
}
}
Streamable HTTP endpoint
http://agents.manabuy.com/mcp
Compatible with MCP clients that support Streamable HTTP transport.
ManaBuy MCP keeps browser login, product discovery, quote calculation, and order creation behind a typed tool layer so agents can reason first and act only after confirmation.
Add the hosted MCP URL to Codex, Claude Code, Cursor, or any Streamable HTTP client.
The login tool returns a ManaBuy sign-in link and saves a user-scoped token after callback.
The client receives product, SKU, price, coupon, and required account-field tools.
Order creation is separated from quote review so the user can confirm every paid step.
Nine tools cover browser login, product discovery, quoting, order creation, and post-order status checks.
Start ManaBuy browser login, try to open the sign-in URL, and return the URL for manual use if needed.
Remove the locally saved ManaBuy token when the user wants to sign out or switch accounts.
Check whether this MCP server is logged in through an environment token or local browser login.
Search products and games by keyword, product code, category, or hub URL name.
Fetch product details, SKU options, required account fields, and top-up instructions.
Preview final price, discounts, coupons, and payable amount before order creation.
Create a confirmed ManaBuy order and return payment information after explicit approval.
Check the current status of an order by order number.
Retrieve detailed order information for support and post-purchase workflows.
Deploy this HTTP entrypoint once, then let agent clients connect to the public MCP URL without installing the server package locally.
Use user-scoped auth, short-lived tokens, or a draft-and-confirm flow before exposing order creation to public users.