Your marketplace,
inside any AI agent
The Tradly MCP server exposes your entire marketplace to Claude, ChatGPT, Codex, and any MCP-compatible host — so agents can query products, manage listings, search users, and automate operations through natural language.
For AI agents — hosted endpoint
https://mcp.tradly.app/.well-known/mcp/manifest.json
https://mcp.tradly.app/api/mcp
Why MCP instead of raw API calls?
Without MCP
- ✕ Agent reads API docs
- ✕ Writes boilerplate HTTP client code
- ✕ Figures out auth headers session by session
- ✕ Parses raw JSON responses
- ✕ Repeats this for every new task
With Tradly MCP
- ✓ Agent just asks in natural language
- ✓ MCP handles auth, routing, and parsing
- ✓ 16 named tools — no boilerplate
- ✓ Works across Claude, ChatGPT, Codex
- ✓ Same interface, every session
How it works
You
"Show orders this week"
AI Agent
Claude · ChatGPT Codex · any MCP host
Tradly MCP
16 tools one API key
Your Marketplace
products · orders listings · users
Quick start
Get your API key from SuperAdmin → Settings → API, then run:
npm install -g @tradly/mcp
export TRADLY_API_KEY=your_tradly_access_token tradly-mcp-server
{
"servers": {
"tradly": {
"command": "tradly-mcp",
"env": {
"TRADLY_API_KEY": "your_tradly_access_token"
}
}
}
}Works with Claude Desktop, ChatGPT Desktop, Codex, and Any MCP host.
Available tools
16 tools available out of the box. Use tradly_request for any endpoint not yet wrapped.
get_products
Fetch products and listings from the marketplace.
get_product_details
Get full details for a specific listing by ID.
search_accounts
Search stores and seller accounts.
get_categories
Fetch listing or account categories.
create_listing
Create a new product listing.
create_blog_post
Publish a blog post via the Layers API.
send_email
Send email through the Tradly utility endpoint.
search_users
Search users by keyword.
get_collections
List curated collections.
create_collection
Create a new collection.
update_collection
Update an existing collection.
delete_collection
Delete a collection by ID.
get_coupons
List available coupons.
create_coupon
Create a new coupon.
get_reports
Generate delivery and order reports.
tradly_request
Raw access to any Tradly endpoint not yet wrapped as a first-class tool.
What you can ask
Once connected, talk to your marketplace in plain language.
"Get all categories from my Tradly store"
"Search accounts for electronics sellers"
"Find products matching "milk" under $20"
"Create a new listing in category 12 for my store"
"Send a welcome email to new users this week"
"Show me the latest orders report"
Ready to connect?
Your API key is in SuperAdmin → Settings → API. Install the package and you're live in under two minutes.