npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@upendra_sengar/adobe-target-mcp

v0.1.0

Published

MCP server for Adobe Target — manage A/B and XT activities via the Adobe Target Admin API with automatic IMS OAuth token handling

Readme

Adobe Target MCP

npm version npm downloads Node License

A Model Context Protocol server for Adobe Target. Lets AI assistants manage A/B and Experience Targeting activities through the Adobe Target Admin API, with automatic Adobe IMS OAuth token handling (fetch, cache, refresh).

Quickstart

Via Claude Code:

claude mcp add adobe-target \
  -e ADOBE_CLIENT_ID=your-client-id \
  -e ADOBE_API_KEY=your-client-id \
  -e ADOBE_CLIENT_SECRET=your-client-secret \
  -e ADOBE_TENANT=your-tenant \
  -- npx -y @upendra_sengar/adobe-target-mcp

Requirements

  • Node.js >= 18
  • An Adobe Developer Console project with:
    • The Adobe Target API enabled
    • OAuth Server-to-Server credentials (client ID + client secret)
  • Your Adobe Target tenant name (the subdomain in mc.adobe.io/<tenant>/target/...)

Configuration

All configuration is passed as environment variables — no keys are ever stored in this package.

| Variable | Required | Description | |----------|----------|-------------| | ADOBE_CLIENT_ID | ✅ | Client ID from your Adobe Developer Console project | | ADOBE_API_KEY | ✅ | API key sent as X-Api-Key (same value as the client ID) | | ADOBE_CLIENT_SECRET | ✅ | Client secret from your Adobe Developer Console project | | ADOBE_TENANT | ✅ | Adobe Target tenant subdomain | | PORT | — | Port for SSE / Streamable HTTP modes (default 3001) | | MCP_TOOL_LOGGING | — | true to enable verbose per-tool logging | | MCP_LOG_FILE | — | File path for logs in stdio mode |

For local development you can copy .env.example to .env instead.

Installation

These clients all use the same mcpServers format:

{
  "mcpServers": {
    "adobe-target": {
      "command": "npx",
      "args": ["-y", "@upendra_sengar/adobe-target-mcp"],
      "env": {
        "ADOBE_CLIENT_ID": "your-client-id",
        "ADOBE_API_KEY": "your-client-id",
        "ADOBE_CLIENT_SECRET": "your-client-secret",
        "ADOBE_TENANT": "your-tenant"
      }
    }
  }
}

Add to your workspace .vscode/mcp.json:

{
  "servers": {
    "adobe-target": {
      "command": "npx",
      "args": ["-y", "@upendra_sengar/adobe-target-mcp"],
      "env": {
        "ADOBE_CLIENT_ID": "your-client-id",
        "ADOBE_API_KEY": "your-client-id",
        "ADOBE_CLIENT_SECRET": "your-client-secret",
        "ADOBE_TENANT": "your-tenant"
      }
    }
  }
}

Transports

| Mode | Command | Use case | |------|---------|----------| | stdio (default) | npx -y @upendra_sengar/adobe-target-mcp | Local MCP clients (Claude Desktop, Cursor, …) | | Streamable HTTP | npx -y @upendra_sengar/adobe-target-mcp --streamable-http | Remote / shared deployments (POST /mcp) | | SSE | npx -y @upendra_sengar/adobe-target-mcp --sse | Legacy SSE clients (GET /sse, POST /messages) |

HTTP modes listen on PORT (default 3001).

Tools

| Tool | Description | |------|-------------| | list_activities | List activities with filters (state, name, type, priority) and pagination | | get_ab_activity_by_id | Get full details of an A/B activity | | create_ab_activity | Create a new A/B activity | | update_activity | Update an existing activity | | update_activity_name | Rename an activity | | update_activity_selector | Update the DOM selector of an activity's experience location |

Authentication flow

The server exchanges your client credentials for an Adobe IMS access token (ims-na1.adobelogin.com), caches it, and refreshes it automatically 5 minutes before expiry. Tokens are held in memory only — nothing is written to disk.

Docker

docker build -t adobe-target-mcp .
docker run -i --rm \
  -e ADOBE_CLIENT_ID=your-client-id \
  -e ADOBE_API_KEY=your-client-id \
  -e ADOBE_CLIENT_SECRET=your-client-secret \
  -e ADOBE_TENANT=your-tenant \
  adobe-target-mcp

License

MIT