# Symbl.ai — Pipedream Connect

> AI platform built for analyzing open domain human-to-human conversations

- API slug: `symbl_ai` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Artificial Intelligence (AI)
- Website: https://symbl.ai
- This page (HTML): https://pipedream.com/apps/symbl-ai
- Tools: 23 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: symbl_ai`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Formatted Transcript:
const result = await mcp.callTool({
  name: "symbl_ai-post-formatted-transcript",
  arguments: {
    conversationId: "Conversation Id",
    contentType: "Content Type",
  },
})
```

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

## API proxy

For a Symbl.ai 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.symbl.ai/v1/manage/trackers

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuc3ltYmwuYWkvdjEvbWFuYWdlL3RyYWNrZXJz?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: "symbl_ai-post-formatted-transcript",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    symbl_ai: { authProvisionId: "apn_xxxxxxx" },
    conversationId: "Conversation Id",
    contentType: "Content Type",
  },
})
```

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

## Actions (23)

### `symbl_ai-post-formatted-transcript` — Create Formatted Transcript (Write)

Create formatted transcript from the Conversation. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/post-formatted-transcript.md

### `symbl_ai-delete-conversation` — Delete Conversation (Write)

Permanently deletes the conversation and all related entities such as messages, insights, topics, etc. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/delete-conversation.md

### `symbl_ai-get-action-items` — Get Action Items (Read-only)

Get a list of all the action items generated from the conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-action-items.md

### `symbl_ai-get-analytics` — Get Analytics (Read-only)

Get a list of metrics and member analytics (speaker ratio, talk time, silence, pace and overlap) from the conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-analytics.md

### `symbl_ai-get-conversation` — Get Conversation (Write)

Get the conversation metadata (meeting name, member(s) name, member(s) email, start and end time, meeting type and meeting Id). See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-conversation.md

### `symbl_ai-get-conversations` — Get Conversations (Read-only)

Get a list of all conversations. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-conversations.md

### `symbl_ai-get-entities` — Get Entities (Read-only)

Get a list of the extracted entities (custom, location, person, date, number, organization, datetime, daterange etc.) from the conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-entities.md

### `symbl_ai-get-follow-ups` — Get Follow-Ups (Write)

Get a list of all the follow-ups generated from the conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-follow-ups.md

### `symbl_ai-get-job-status` — Get Job Status (Write)

Get the status of an Async job request. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-job-status.md

### `symbl_ai-get-members` — Get Members (Read-only)

Get a list of all the members from the conversation. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-members.md

### `symbl_ai-get-questions` — Get Questions (Read-only)

Get a list of requests for information or explicit questions recognized during the conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-questions.md

### `symbl_ai-get-speech-to-text` — Get Speech to Text (Read-only)

Get a list of all the messages in a conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-speech-to-text.md

### `symbl_ai-get-summary` — Get Summary (Read-only)

Get a summary of important contextual messages in a conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-summary.md

### `symbl_ai-get-topics` — Get Topics (Read-only)

Get a list of all the topics generated from the conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-topics.md

### `symbl_ai-get-trackers` — Get Trackers (Read-only)

Get a list of the detected trackers in the conversation. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/get-trackers.md

### `symbl_ai-list-conversation-id-options` — List Conversation Id Options (Read-only)

Retrieves available options for the Conversation Id field.

Full schema: https://pipedream.com/apps/symbl-ai/actions/list-conversation-id-options.md

### `symbl_ai-post-audio-url` — Submit Audio URL (Write)

Submit an Audio file by providing the URL for processing. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/post-audio-url.md

### `symbl_ai-post-trackers-analytics-ui` — Submit Trackers and Analytics Summary User Interface (Write)

The Trackers and Analytics Summary UI provides users the ability to interact with the Symbl elements (Transcripts, Questions, Follow-Ups, Action Items, etc.) from a audio conversation. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/post-trackers-analytics-ui.md

### `symbl_ai-post-video-summary-ui` — Submit Video Summary User Interface (Write)

The Video Summary UI provides users the ability to interact with the Symbl elements (Transcripts, Questions, Follow-Ups, Action Items, etc.) from a video conversation. See the doc here

Full schema: https://pipedream.com/apps/symbl-ai/actions/post-video-summary-ui.md

### `symbl_ai-post-video-url` — Submit Video URL (Write)

Submit a Video file by providing the URL for processing. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/post-video-url.md

### `symbl_ai-put-conversation` — Update Conversation (Write)

Update an existing Conversation object with metadata information. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/put-conversation.md

### `symbl_ai-put-member` — Update Member (Write)

Update an existing Conversation Member object. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/put-member.md

### `symbl_ai-put-speaker-events` — Update Speaker Events (Write)

Update the Speaker Events of the Conversation. See the doc here.

Full schema: https://pipedream.com/apps/symbl-ai/actions/put-speaker-events.md

---

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