Streamable HTTP MCP

Give your ManaBuy agent superpowers.

Search games, inspect SKUs, quote totals, create confirmed orders, and track fulfillment through one MCP endpoint built for AI clients.

9 toolslogin, search, quote, order, status
Hostedconnect from agent clients
Quote firstreview price before payment
Endpoint ready /mcp

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.

Safety Create-order tools can open real payment flows. Agents should present product, SKU, quantity, account fields, price, currency, and payment method before calling them.

How it works

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.

1

Connect the client

Add the hosted MCP URL to Codex, Claude Code, Cursor, or any Streamable HTTP client.

2

User signs in when needed

The login tool returns a ManaBuy sign-in link and saves a user-scoped token after callback.

3

Agent reads ManaBuy context

The client receives product, SKU, price, coupon, and required account-field tools.

4

Quote before payment

Order creation is separated from quote review so the user can confirm every paid step.

What your agent can do

Nine tools cover browser login, product discovery, quoting, order creation, and post-order status checks.

Auth login_manabuy

Start ManaBuy browser login, try to open the sign-in URL, and return the URL for manual use if needed.

Auth logout_manabuy

Remove the locally saved ManaBuy token when the user wants to sign out or switch accounts.

Auth get_login_status

Check whether this MCP server is logged in through an environment token or local browser login.

Read search_products

Search products and games by keyword, product code, category, or hub URL name.

Read get_product_detail

Fetch product details, SKU options, required account fields, and top-up instructions.

Quote quote_order

Preview final price, discounts, coupons, and payable amount before order creation.

Write create_order

Create a confirmed ManaBuy order and return payment information after explicit approval.

Read get_order_status

Check the current status of an order by order number.

Read get_order_detail

Retrieve detailed order information for support and post-purchase workflows.

Hosted endpoint

Built for hosted MCP

Deploy this HTTP entrypoint once, then let agent clients connect to the public MCP URL without installing the server package locally.

Order safety

Production guardrails

Use user-scoped auth, short-lived tokens, or a draft-and-confirm flow before exposing order creation to public users.