shippo-mcp
Official Shippo MCP server: compare multi-carrier rates, buy labels, track packages, and validate addresses from a prompt.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Shippo List Tools: List Shippo API operations available through this server. Use this FIRST to discover what operations exist before calling shippo_describe_tool or one of the execute tools. Returns e
- Shippo Describe Tool: Get the full input schema, detailed description, and kind classification for a Shippo operation. Call this AFTER shippo_list_tools to learn the exact parameters (required + optio
- Shippo Read Execute Tool: Execute a READ-only Shippo API operation (List*, Get*, Validate*, Parse*, etc.). Returns the Shippo API response. Does NOT mutate any state. Use this tool ONLY for operations
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Official Shippo MCP server: compare multi-carrier rates, buy labels, track packages, and validate addresses from a prompt.
Список инструментов сервера (4)
Технические названия из tools/list. Нужны только разработчикам.
| shippo_list_tools | List Shippo API operations available through this server. Use this FIRST to discover what operations exist before calling shippo_describe_tool or one of the execute tools. Returns each operation's short name, category, kind (read or write), and one-line description. Filter by `category` (e.g. 'Webhooks', 'Manifests', 'Address Book'), `kind` ('read' or 'write'), or `query` (natural-language keywords matched against names and descriptions). Pass no arguments to list everything. There are ~74 operations spanning 17 categories: Addresses, Address Book, Batches, Carrier Accounts, Customs, Manifests, Orders, Parcels, Pickups, Rates, Refunds, Service Groups, Shipments, Shippo Accounts, Tracking, Transactions, Webhooks. |
| shippo_describe_tool | Get the full input schema, detailed description, and kind classification for a Shippo operation. Call this AFTER shippo_list_tools to learn the exact parameters (required + optional, types, enum values) AND to confirm which execute tool to use (read or write). Pass the short operation name from shippo_list_tools (e.g. 'listWebhooks', 'CreateAddress', 'GetTrack'). Name lookup is case-insensitive. |
| shippo_read_execute_tool | Execute a READ-only Shippo API operation (List*, Get*, Validate*, Parse*, etc.). Returns the Shippo API response. Does NOT mutate any state. Use this tool ONLY for operations whose kind is 'read' per shippo_describe_tool. Calling a write operation here will be rejected — use shippo_write_execute_tool for those. Get the operation name from shippo_list_tools and its argument shape from shippo_describe_tool first. Name lookup is case-insensitive. |
| shippo_write_execute_tool | Execute a WRITE Shippo API operation (Create*, Update*, Delete*, *Refund, etc.). Returns the Shippo API response. WILL mutate state on the user's Shippo account. Use this tool ONLY for operations whose kind is 'write' per shippo_describe_tool. Calling a read operation here will be rejected — use shippo_read_execute_tool for those. Get the operation name from shippo_list_tools and its argument shape from shippo_describe_tool first. Name lookup is case-insensitive. |