# Validate Address — TaxJar

> Validates a customer address and returns back a collection of address matches. See the documentation

- Key: `taxjar-validate-address`
- Type: Action (Write)
- Version: 0.0.3
- App: TaxJar (`taxjar`) — https://pipedream.com/apps/taxjar.md
- This page (HTML): https://pipedream.com/apps/taxjar/actions/validate-address
- Hints: open-world
- Source: https://github.com/PipedreamHQ/pipedream/blob/master/components/taxjar/actions/validate-address/validate-address.mjs

## Description

Validates a customer address and returns back a collection of address matches. [See the documentation](https://developers.taxjar.com/api/reference/#post-validate-an-address)

## Props

| Prop | Type | Required | Description |
|---|---|---|---|
| `country` | `string` | No | The two-letter ISO country code, i.e.: US. At this time only US addresses can be validated |
| `state` | `string` | No | The two-letter ISO state code, i.e.: CA |
| `zip` | `string` | No | The ZIP code of the customer's primary address, i.e.: 92093 |
| `city` | `string` | No | The city of the customer's primary address, i.e.: La Jolla |
| `street` | `string` | No | The street of the customer's primary address, i.e.: 9500 Gilman Drive |

## 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": "taxjar",
      },
    },
  },
)

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: "taxjar-validate-address",
  arguments: {
    country: "Country",
    state: "State",
  },
})
```

**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: "taxjar-validate-address",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    taxjar: { authProvisionId: "apn_xxxxxxx" },
    country: "Country",
    state: "State",
  },
})

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": "taxjar-validate-address",
    "configured_props": {
      "taxjar": { "authProvisionId": "apn_xxxxxxx" },
      "country": "Country",
      "state": "State"
    }
  }'
```

---

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