# What Are Those — Pipedream Connect

> Dubbed “The Shazam For Sneakers” helps you to identify 1M sneakers & Fashion Products with 95% accuracy!

- API slug: `what_are_those` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Artificial Intelligence (AI)
- Website: https://www.whatarethose.co/
- This page (HTML): https://pipedream.com/apps/what-are-those
- Tools: 3 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: what_are_those`

```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": "what_are_those",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Find Sneakers by SKU:
const result = await mcp.callTool({
  name: "what_are_those-find-sneakers-by-sku",
  arguments: {
    sizeTagImage: "Size Tag Image",
    syncDir: "SyncDir",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.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: "what_are_those-find-sneakers-by-sku",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    what_are_those: { authProvisionId: "apn_xxxxxxx" },
    sizeTagImage: "Size Tag Image",
    syncDir: "SyncDir",
  },
})
```

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

## Actions (3)

### `what_are_those-find-sneakers-by-sku` — Find Sneakers by SKU (Read-only)

Identifies sneakers from a size tag photo and returns sneaker name and details. See the documentation

Full schema: https://pipedream.com/apps/what-are-those/actions/find-sneakers-by-sku.md

### `what_are_those-grade-sneakers-condition` — Grade and Authenticate Sneakers (Read-only)

Grades and authenticates sneakers using provided images. See the documentation

Full schema: https://pipedream.com/apps/what-are-those/actions/grade-sneakers-condition.md

### `what_are_those-identify-sneakers-from-photo` — Identify Sneakers from Photo (Read-only)

Identifies sneakers from an uploaded image and returns details such as name, links, images, prices, and confidence scores. See the documentation.

Full schema: https://pipedream.com/apps/what-are-those/actions/identify-sneakers-from-photo.md

---

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