# LimoExpress — Pipedream Connect

> Livery Dispatch & Management Software

- API slug: `limoexpress` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Business Management
- Website: https://limoexpress.me/
- This page (HTML): https://pipedream.com/apps/limoexpress
- Tools: 10 actions · 1 trigger

## 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: limoexpress`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Client:
const result = await mcp.callTool({
  name: "limoexpress-create-client",
  arguments: {
    name: "Name",
    address: "Address",
  },
})
```

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: "limoexpress-create-client",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    limoexpress: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    address: "Address",
  },
})
```

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

## Actions (10)

### `limoexpress-create-client` — Create Client (Write)

Creates a new client with specified details. See the documentation

Full schema: https://pipedream.com/apps/limoexpress/actions/create-client.md

### `limoexpress-create-booking` — Create Limo Booking (Write)

Creates a new limo booking with specified details. See the documentation

Full schema: https://pipedream.com/apps/limoexpress/actions/create-booking.md

### `limoexpress-list-booking-status-id-options` — List Booking Status ID Options (Read-only)

Retrieves available options for the Booking Status ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-booking-status-id-options.md

### `limoexpress-list-booking-type-id-options` — List Booking Type ID Options (Read-only)

Retrieves available options for the Booking Type ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-booking-type-id-options.md

### `limoexpress-list-client-id-options` — List Client ID Options (Read-only)

Retrieves available options for the Client ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-client-id-options.md

### `limoexpress-list-currency-id-options` — List Currency ID Options (Read-only)

Retrieves available options for the Currency ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-currency-id-options.md

### `limoexpress-list-invoice-id-options` — List Invoice ID Options (Read-only)

Retrieves available options for the Invoice ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-invoice-id-options.md

### `limoexpress-list-payment-method-id-options` — List Payment Method ID Options (Read-only)

Retrieves available options for the Payment Method ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-payment-method-id-options.md

### `limoexpress-list-vehicle-class-id-options` — List Vehicle Class ID Options (Read-only)

Retrieves available options for the Vehicle Class ID field.

Full schema: https://pipedream.com/apps/limoexpress/actions/list-vehicle-class-id-options.md

### `limoexpress-mark-invoice-paid` — Mark Invoice Paid (Write)

Marks an invoice as paid. See the documentation

Full schema: https://pipedream.com/apps/limoexpress/actions/mark-invoice-paid.md

## Triggers (1)

### `limoexpress-new-booking` — New Limo Booking Created (Polling)

Emit new event when a customer creates a new limo booking. See the documentation

Full schema: https://pipedream.com/apps/limoexpress/triggers/new-booking.md

---

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