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

@amazon-sp-api-release/sp-api-dev-mcp

v1.0.1

Published

Consolidated npm package that bundles multiple SP-API MCP servers

Readme

SP-API Dev MCP

A consolidated npm package that bundles MCP servers for Amazon Selling Partner API development. Install once, get access to all SP-API developer tools.

Prerequisites

  • Node.js >= 20 is required.

Installation

npm install -g @amazon-sp-api-release/sp-api-dev-mcp

Or use directly with npx (no install required).

Included Servers

sp-api-dev-assistant-mcp-server

Developer assistant with 6 tools for SP-API integration:

| Tool | Description | |------|-------------| | sp_api_reference | Search official SP-API documentation using natural language | | sp_api_explore_catalog | Browse SP-API endpoint catalog (parameters, schemas, examples) | | sp_api_execute | Execute live SP-API requests with auth and signing | | sp_api_generate_code_sample | Generate code samples (Python, Java, JavaScript, C#, PHP) | | sp_api_migration_assistant | Migrate between API versions (e.g., Orders v0 to v2026-01-01) | | sp_api_optimize | Well-architected review of SP-API integration code |

Most tools work locally with no credentials. SP-API credentials are only needed for sp_api_execute.

sp-api-workflow-mcp-server

Build and execute SP-API workflows using natural language:

| Category | Tools | |----------|-------| | Builder | create_workflow, import_workflow, add_task_state, add_fetch_state, add_choice_state, add_succeed_state, add_fail_state, add_wait_state, add_pass_state, add_input_state, set_start_state, get_workflow_schema, validate_workflow, list_workflows, delete_workflow | | Interpreter | execute_workflow, get_execution_status, list_executions, abort_execution, get_execution_events, resume_execution, tail_execution_events | | Callback | list_pending_callbacks, get_callback_details, submit_callback, extend_callback_timeout |

SP-API credentials are required for workflows that make live API calls.

MCP Client Configuration

Claude Desktop / Kiro

Add to your MCP config file:

{
  "mcpServers": {
    "sp-api-dev-assistant": {
      "command": "npx",
      "args": ["-y", "@amazon-sp-api-release/sp-api-dev-mcp", "sp-api-dev-assistant-mcp-server"],
      "env": {
        "SP_API_CLIENT_ID": "your-client-id",
        "SP_API_CLIENT_SECRET": "your-client-secret",
        "SP_API_REFRESH_TOKEN": "your-refresh-token"
      }
    },
    "sp-api-workflow": {
      "command": "npx",
      "args": ["-y", "@amazon-sp-api-release/sp-api-dev-mcp", "sp-api-workflow-mcp-server"],
      "env": {
        "SP_API_CLIENT_ID": "your-client-id",
        "SP_API_CLIENT_SECRET": "your-client-secret",
        "SP_API_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

Config file locations

| Client | Config file | |--------|-------------| | Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json | | Claude Desktop (Linux) | ~/.config/Claude/claude_desktop_config.json | | Cursor | .cursor/mcp.json in your project or ~/.cursor/mcp.json globally | | VS Code (MCP extension) | .vscode/mcp.json in your project | | Kiro | .kiro/settings/mcp.json in your project |

Environment Variables

| Variable | Required For | Description | |----------|-------------|-------------| | SP_API_CLIENT_ID | sp_api_execute, workflow execution | SP-API OAuth client ID | | SP_API_CLIENT_SECRET | sp_api_execute, workflow execution | SP-API OAuth client secret | | SP_API_REFRESH_TOKEN | sp_api_execute, workflow execution | SP-API refresh token | | SP_API_BASE_URL | Optional | Override SP-API base URL (default: NA endpoint) | | SP_API_REGION | Optional | Selling region: na, eu, fe (default: na) | | LOG_LEVEL | Optional | Logging level: error, warn, info, debug |

License

Apache-2.0