IntegrateIntegrate
Integrations

Etsy Integration

Manage Etsy get me, get shop, list shop listings, create listing, list receipts

The Etsy integration provides access to manage Etsy get me, get shop, list shop listings, create listing, list receipts through the Integrate MCP server.

Installation

The Etsy integration is included with the SDK:

import { etsyIntegration } from "integrate-sdk/server";

Setup

1. Create an Etsy OAuth App

  1. Create an OAuth application for Etsy
  2. Configure your redirect URI
  3. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Etsy integration to your server configuration. The integration automatically reads ETSY_CLIENT_ID and ETSY_CLIENT_SECRET from your environment variables:

import { createMCPServer, etsyIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    etsyIntegration({
      scopes: ["listings_r", "listings_w", "transactions_r", "transactions_w", "shops_r", "shops_w", "profile_r"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

etsyIntegration({
  clientId: process.env.CUSTOM_ETSY_ID,
  clientSecret: process.env.CUSTOM_ETSY_SECRET,
      scopes: ["listings_r", "listings_w", "transactions_r", "transactions_w", "shops_r", "shops_w", "profile_r"], // Optional
});

3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

import { client } from "integrate-sdk";

await client.authorize("etsy");
const result = await client.etsy.getMe({});

console.log(result);

If you're using a custom client, add the integration to the integrations array:

import { createMCPClient, etsyIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [etsyIntegration()],
});

Configuration Options

Prop

Type

Default Scopes

These defaults are applied unless you override scopes in the integration config:

  • listings_r
  • listings_w
  • transactions_r
  • transactions_w
  • shops_r
  • shops_w
  • profile_r

Tools

etsy_get_me

Get me

No parameters.

etsy_get_shop

Get shop

Prop

Type

etsy_list_shop_listings

List shop listings

Prop

Type

etsy_create_listing

Create listing

Prop

Type

etsy_list_receipts

List receipts

Prop

Type

etsy_update_inventory

Update inventory

Prop

Type

Notes

  • Category: Commerce
  • Authentication mode: OAuth

On this page