Connect your favorite AI agent to Pimelo and manage your product catalog using natural language. Search, create, update — everything is accessible via MCP.
The Model Context Protocol (MCP) is an open standard that enables AI agents to interact with external applications in a structured and secure way. Pimelo implements a complete MCP server, allowing clients like Claude, ChatGPT, Cursor or any compatible client to read and modify your product data.
Your AI agent connects to Pimelo's MCP server via HTTP. It automatically discovers the 14 available tools and can call them to interact with your catalog. OAuth authentication ensures only authorized users access your data.
14 tools across 5 categories covering all your PIM needs.
search-products
Full-text search with filters on status, channel, locale and attributes.
get-product
Retrieve complete product details by unique identifier.
create-product
Create a new product with attribute values per channel and locale.
update-product
Modify attribute values of an existing product.
search-entities
Full-text search on entities with multi-criteria filters.
get-entity
Retrieve complete entity details by identifier.
list-attributes
List all attributes of an entity type with their configuration.
get-attribute
Retrieve details of a specific attribute.
search-media
Search the media library by name, type or date.
get-media-url
Generate a signed URL to access a media file.
list-channels
List all configured sales channels with their locales.
list-locales
List all available locales in the organization.
list-entity-types
List all entity types with their attributes.
list-attribute-sets
List available attribute sets by entity type.
MCP server access is secured via OAuth. Your token scopes determine which tools your AI agent can access.
| Scopes | Tools |
|---|---|
| products:read, products:write | search-products, get-product, create-product, update-product |
| entities:read | search-entities, get-entity |
| attributes:read | list-attributes, get-attribute |
| media:read | search-media, get-media-url |
| settings:read | list-channels, list-locales, list-entity-types, list-attribute-sets |
Add Pimelo as an MCP server in your AI client configuration. Here is an example for Claude Desktop:
{
"mcpServers": {
"pimelo": {
"type": "http",
"url": "https://www.pimelo.app/_mcp"
}
}
}
The MCP server URL is the same for all clients. Authentication is handled automatically via the built-in OAuth flow.
Create your free account and start managing your product catalog with AI today.