# The Official Board — Pipedream Connect

> Org Charts & Key Executives of 80,000 Top Companies

- API slug: `the_official_board` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://www.theofficialboard.com
- This page (HTML): https://pipedream.com/apps/the-official-board
- Tools: 6 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: the_official_board`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Orgchart PDF File:
const result = await mcp.callTool({
  name: "the_official_board-create-orgchart-pdf-file",
  arguments: {
    companyId: "Company ID",
    filename: "Target Filename",
  },
})
```

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: "the_official_board-create-orgchart-pdf-file",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    the_official_board: { authProvisionId: "apn_xxxxxxx" },
    companyId: "Company ID",
    filename: "Target Filename",
  },
})
```

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

## Actions (6)

### `the_official_board-create-orgchart-pdf-file` — Create Orgchart PDF File (Write)

Export organization chart as PDF file. See the documentation

Full schema: https://pipedream.com/apps/the-official-board/actions/create-orgchart-pdf-file.md

### `the_official_board-create-orgchart-xlsx-file` — Create Orgchart XLSX File (Write)

Export organization chart as XLSX file. See the documentation

Full schema: https://pipedream.com/apps/the-official-board/actions/create-orgchart-xlsx-file.md

### `the_official_board-get-executive-info` — Get Executive Info (Read-only)

Get executive biography information. See the documentation

Full schema: https://pipedream.com/apps/the-official-board/actions/get-executive-info.md

### `the_official_board-get-orgchart-info` — Get Orgchart Info (Read-only)

Get organization chart information for a company. See the documentation

Full schema: https://pipedream.com/apps/the-official-board/actions/get-orgchart-info.md

### `the_official_board-search-company-org-chart-id` — Search Company Org Chart ID (Read-only)

Search for company org chart identifier. See the documentation

Full schema: https://pipedream.com/apps/the-official-board/actions/search-company-org-chart-id.md

### `the_official_board-search-executive-by-name` — Search Executive (Read-only)

Search for executives by name. See the documentation

Full schema: https://pipedream.com/apps/the-official-board/actions/search-executive-by-name.md

---

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