Connect your account, then chat with AI to run tools.
Sharetribe is a hosted marketplace platform. Use the Integration API to manage marketplace users, listings, transactions, availability, stock, and the audit event stream as the operator. Server-to-server only — there is no end-user Sign-in flow on this surface.
You’ll sign in to MCPBundles when your client connects.
https://mcp.mcpbundles.com/bundle/sharetribeThis server needs a sign-in. MCPBundles handles that setup once — then chat here with saved access and a log of what ran.
Live probe refreshed Sep 18, 2026 · Endpoint host mcp.mcpbundles.com
Domain knowledge for Sharetribe — workflow patterns, data models, and gotchas for your AI agent.
Operator-level surface for a Sharetribe marketplace. Every tool runs as the marketplace operator across the entire tenancy — there is no per-user scoping at this level. Users sign up via the marketplace front-end (Marketplace API), not through this surface; create-user is intentionally absent because Sharetribe does not expose it on the Integration API.
Read tools that target a list-able resource accept an optional id:
include accepts a comma-separated string or a list — both "author,images" and ["author","images"] work.
The upsert listing tool selects create (no id) vs update (with id) automatically. On create, title and authorId are required and state must be published or pendingApproval. On update, every field is a partial overwrite; extended-data objects merge at the top level and top-level null keys are removed.
The Integration API exposes a multipart image upload surface. Workflow:
Each image UUID attaches to one listing only. HTTP 409 image-invalid means the UUID is missing or already used elsewhere — upload a fresh image and retry. Omit images to publish without photos.
Sharetribe represents money as {amount: <integer>, currency: <ISO 4217>}. Amount is in minor units — {amount: 1590, currency: "USD"} is $15.90, not $1,590. Always pass minor units when creating or updating prices, and always interpret returned amounts as minor units.
Sharetribe pagination is integer page (1-indexed) plus perPage, NOT an opaque cursor token. The wrapper normalizes list responses to {items, page, per_page, total, total_pages, has_more, next_page, included} so callers can iterate without parsing meta themselves.
The events stream is the exception: it advertises paginationUnsupported: true and returns total: null / total_pages: null / has_more: null. Walk it with createdAtStart + createdAtEnd windows or with the startAfterSequenceId forward cursor.
Transactions are state machines. To move a transaction along its process, call the transition transaction tool with the transaction id and the transition name (e.g. transition/accept, transition/cancel, transition/mark-delivered). The transition's params shape depends on the process definition — consult the marketplace's transaction process. Set speculative=true to validate a transition and produce the resulting transaction shape WITHOUT committing; useful for previewing line-item math before charging.
Connect Sharetribe to any MCP client in minutes
Opens MCPBundles Studio with this server selected. After sign-in, chat and run tools from the same thread.
Browse all toolsSharetribe
Sharetribe Approve Listing
sharetribe_approve_listingApprove a listing whose state is 'pendingApproval'. Requires id. Only relevant when the marketplace requires operator approval before listings go live; for marketplaces with auto-approve, listings reach 'published' on create and this tool is unnecessary.
Try in chatSharetribe is a hosted marketplace platform. Use the Integration API to manage marketplace users, listings, transactions, availability, stock, and the audit event stream as the operator. Server-to-server only — there is no end-user Sign-in flow on this surface. It provides 22 tools that AI agents can use through the Model Context Protocol (MCP).
Add the MCPBundles server URL to your MCP client configuration (Claude Desktop, Cursor, VS Code, etc.). The URL format is: https://mcp.mcpbundles.com/bundle/sharetribe. Authentication is handled automatically.
© 2026 ThinkChain Inc. All rights reserved.
Sharetribe provides 22 tools that can be called by AI agents, along with a SKILL.md that gives your AI agent domain knowledge about when and how to use them.
Sharetribe uses API Key. Sharetribe requires credentials. Connect via MCPBundles and authentication is handled automatically.
MCPBundles is an independent platform built on the open Model Context Protocol standard. Not affiliated with Anthropic PBC or Claude.
Other MCP servers in this category from the directory index
Read FastSpring order and subscription webhook JSON payloads in chat.
4 tools