Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

Akeneo PIM REST API MCP Config

Akeneo PIM REST API API

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/akeneo-com.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "akeneo-com": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/akeneo-com"
      ],
      "env": {
        "AKENEO_PIM_REST_API_API_KEY": "your_akeneo_pim_rest_api_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "akeneo-com": {
      "url": "https://mcpbridge.org/config/akeneo-com.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "akeneo-com": {
      "url": "https://mcpbridge.org/config/akeneo-com.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/akeneo-com.json to fetch programmatically.

{
  "mcpServers": {
    "akeneo-com": {
      "command": "npx",
      "args": ["-y","@mcp/akeneo-com"],
      "env": {
      "AKENEO_PIM_REST_API_API_KEY": "your_akeneo_pim_rest_api_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/akeneo-com.json

Environment Variables

AKENEO_PIM_REST_API_API_KEY

Replace your_akeneo_pim_rest_api_api_key with your actual akeneo pim rest api api key

Endpoints

POST/api/oauth/v1/token

Get authentication token

GET/api/rest/v1

Get list of all endpoints

GET/api/rest/v1/asset-categories

Get list of PAM asset categories

POST/api/rest/v1/asset-categories

Create a new PAM asset category

PATCH/api/rest/v1/asset-categories

Update/create several PAM asset categories

GET/api/rest/v1/asset-categories/{code}

Get a PAM asset category

PATCH/api/rest/v1/asset-categories/{code}

Update/create a PAM asset category

GET/api/rest/v1/asset-families

Get list of asset families

GET/api/rest/v1/asset-families/{asset_family_code}/assets

Get the list of the assets of a given asset family

PATCH/api/rest/v1/asset-families/{asset_family_code}/assets

Update/create several assets