# Akeneo — Pipedream Connect

> Product information management and data intelligence software

- API slug: `akeneo` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Business Management
- Website: https://akeneo.com
- This page (HTML): https://pipedream.com/apps/akeneo
- Tools: 12 actions · 0 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: akeneo`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "akeneo",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create A New Product Media File:
const result = await mcp.callTool({
  name: "akeneo-create-a-new-product-media-file",
  arguments: {
    productId: "Product Identifier",
    productModelCode: "Product Model Code",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Akeneo endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.example.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "akeneo-create-a-new-product-media-file",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    akeneo: { authProvisionId: "apn_xxxxxxx" },
    productId: "Product Identifier",
    productModelCode: "Product Model Code",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (12)

### `akeneo-create-a-new-product-media-file` — Create A New Product Media File (Write)

Allows you to create a new media file and associate it to an attribute value of a given product or product model. See the docs

Full schema: https://pipedream.com/apps/akeneo/actions/create-a-new-product-media-file.md

### `akeneo-delete-product` — Delete Product (Write)

Delete a product from Akeneo. See the documentation

Full schema: https://pipedream.com/apps/akeneo/actions/delete-product.md

### `akeneo-get-draft` — Get Draft (Read-only)

Get a product draft from Akeneo. See the documentation

Full schema: https://pipedream.com/apps/akeneo/actions/get-draft.md

### `akeneo-get-product` — Get Product (Read-only)

Get a product from Akeneo. See the documentation

Full schema: https://pipedream.com/apps/akeneo/actions/get-product.md

### `akeneo-list-attribute-options` — List Attribute Options (Read-only)

Retrieves available options for the Attribute field.

Full schema: https://pipedream.com/apps/akeneo/actions/list-attribute-options.md

### `akeneo-list-channel-code-options` — List Channel Code Options (Read-only)

Retrieves available options for the Channel Code field.

Full schema: https://pipedream.com/apps/akeneo/actions/list-channel-code-options.md

### `akeneo-list-locale-options` — List Locale Options (Read-only)

Retrieves available options for the Locale field.

Full schema: https://pipedream.com/apps/akeneo/actions/list-locale-options.md

### `akeneo-list-media-file-attribute-code-options` — List Media File Attribute Code Options (Read-only)

Retrieves available options for the Media File Attribute Code field.

Full schema: https://pipedream.com/apps/akeneo/actions/list-media-file-attribute-code-options.md

### `akeneo-list-product-id-options` — List Product Identifier Options (Read-only)

Retrieves available options for the Product Identifier field.

Full schema: https://pipedream.com/apps/akeneo/actions/list-product-id-options.md

### `akeneo-list-product-model-code-options` — List Product Model Code Options (Read-only)

Retrieves available options for the Product Model Code field.

Full schema: https://pipedream.com/apps/akeneo/actions/list-product-model-code-options.md

### `akeneo-search-products` — Search Products (Read-only)

Search products from Akeneo. See the documentation

Full schema: https://pipedream.com/apps/akeneo/actions/search-products.md

### `akeneo-submit-product-for-approval` — Submit Product For Approval (Write)

Submit a product for approval. See the documentation

Full schema: https://pipedream.com/apps/akeneo/actions/submit-product-for-approval.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
