> ## Documentation Index
> Fetch the complete documentation index at: https://platform.take.app/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP Server

> Connect your Take App store to Claude, ChatGPT, and other AI assistants over the Model Context Protocol.

Take App runs a remote **Model Context Protocol (MCP)** server so AI assistants can read and manage your store in chat — list orders, check inventory, create products, message customers, and more.

The server is a thin, authenticated layer over the [Merchant API V2](/api-reference/v2/introduction): every tool maps to a V2 endpoint, so behaviour, validation, and money handling are identical.

## Endpoint

```
https://take.app/api/mcp
```

It speaks the **streamable HTTP** MCP transport and requires OAuth — no API key to copy, no config file to edit. You authorize once in the assistant, pick which store to connect, and you're done.

## What it can do

Each tool is scoped to the single store you approve during authorization.

| Area      | Tools                                                                       |
| --------- | --------------------------------------------------------------------------- |
| Store     | `get_store`                                                                 |
| Products  | `list_products`, `get_product`, `create_product`, `update_product`          |
| Customers | `list_customers`, `get_customer`, `create_customer`, `update_customer`      |
| Orders    | `list_orders`, `search_orders`, `get_order`, `create_order`, `update_order` |
| Inventory | `list_inventory_items`, `update_inventory_item`, `batch_update_inventory`   |
| Messaging | `send_message`                                                              |

## Connect

* [Connect Claude](/mcp/connect-claude)
* [Connect ChatGPT](/mcp/connect-chatgpt)

<Note>
  MCP connections require a store on the **Business** plan or higher, the same
  as the Merchant API.
</Note>
