# Continue AskFred Conversation — Fireflies

> Ask a follow-up question in an existing AskFred conversation thread, continuing the context of a prior question. Use Ask Question About Meeting first to start a thread and obtain its thread_id. See the documentation

- Key: `fireflies-continue-askfred-conversation`
- Type: Action (Write)
- Version: 0.0.2
- App: Fireflies (`fireflies`) — https://pipedream.com/apps/fireflies.md
- This page (HTML): https://pipedream.com/apps/fireflies/actions/continue-askfred-conversation
- Hints: open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/fireflies/actions/continue-askfred-conversation/continue-askfred-conversation.mjs

## Description

Ask a follow-up question in an existing AskFred conversation thread, continuing the context of a prior question. Use **Ask Question About Meeting** first to start a thread and obtain its `thread_id`. [See the documentation](https://docs.fireflies.ai/graphql-api/mutation/continue-askfred-thread)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `threadId` | `string` | Yes | The AskFred thread to continue. Use the thread_id returned by Ask Question About Meeting, or List AskFred Thread ID Options to browse existing threads. |
| `query` | `string` | Yes | The follow-up question to ask in this thread, e.g. Can you provide more detail on the budget discussion?. Maximum 2000 characters. |
| `responseLanguage` | `string` | No | Language code for the AI's response, e.g. en or es. Defaults to English. |
| `formatMode` | `string` | No | How the answer should be formatted. Accepted values are markdown or plaintext. |

## Run it

**MCP**

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

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

const { tools } = await mcp.listTools()

// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
  name: "fireflies-continue-askfred-conversation",
  arguments: {
    threadId: "Thread ID",
    query: "Follow-up Question",
  },
})
```

**TypeScript**

```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: "fireflies-continue-askfred-conversation",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    fireflies: { authProvisionId: "apn_xxxxxxx" },
    threadId: "Thread ID",
    query: "Follow-up Question",
  },
})

console.log(result)
```

**cURL**

```bash
curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
  -H "Content-Type: application/json" \
  -H "X-PD-Environment: production" \
  -H "Authorization: Bearer {access_token}" \
  -d '{
    "external_user_id": "{external_user_id}",
    "id": "fireflies-continue-askfred-conversation",
    "configured_props": {
      "fireflies": { "authProvisionId": "apn_xxxxxxx" },
      "threadId": "Thread ID",
      "query": "Follow-up Question"
    }
  }'
```

---

- App: https://pipedream.com/apps/fireflies.md · All apps: https://pipedream.com/apps
