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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@outseta/admin-mcp-server

v0.0.4

Published

Model Context Protocol (MCP) server for Outseta administration - enables AI assistants to manage your Outseta account through natural language

Readme

Outseta Admin MCP Server

A Model Context Protocol (MCP) server for interacting with your Outseta account. This server provides AI assistants with the ability to manage your Outseta account through natural language commands.

What You Can Do

This MCP server enables AI assistants to help you with common Outseta administrative tasks:

Account & People

  • Manage accounts & people:

    • "Register a new account for Acme Corp"
    • "Add [email protected] to the Basic plan"
    • "Create a new person 'Jane Doe' ([email protected])"
    • "Add Sarah Johnson as a team member to the Acme Corp"
    • "Update the primary contact for Acme Corp"
  • Explore accounts & people:

    • "How many people are associated with Acme Corp?"
    • "List all accounts created this month"
    • "Who has been added this week?"
    • "What accounts are trialing at the moment?"

Billing Plans

  • Manage billing plans & plan families:

    • "Create a new monthly plan called 'Starter' for $29/month, $199/year"
    • "Add a 'Pro' plan"
    • "Help me create plans for a course business"
    • "Let's add SaaS style plans"
    • "Create a plan family for my course business"
    • "Set up plan families for different product lines"
  • Explore billing plans & plan families:

    • "What are my paid plans?"
    • "What is the price of my Pro plan?"
    • "List all plan families"
    • "Show me all plans in the 'SaaS' plan family"

Subscriptions

  • Preview & change subscriptions:

    • "What would happen if I upgrade account Acme Corp to annual billing?"
    • "Preview the cost changes if I switch Acme Corp to the Pro plan"
    • "Upgrade Acme Corp to the Pro plan starting immediately"
  • Explore subscriptions:

    • "Show me all active subscriptions"
    • "Show me failed payments this week"
    • "List accounts that are currently on trials"

Email Lists

  • Manage email lists & subscriptions:

    • "I need a newsletter"
    • "Let's add a Product Updates list with double opt-in"
    • "Add [email protected] to Product Updates"
    • "Create an internal list for team announcements"
  • Explore email lists & subscribers:

    • "What email lists do I have"
    • "Who's subscribed to Product Updates?"
    • "List all subscribers to my newsletter"
    • "How many people are on each of my email lists?"

Integration with AI Assistants

This server integrates with MCP-compatible AI assistants to enable natural language management of your Outseta account. The AI assistant will automatically select the appropriate tools based on your requests, handle parameter validation and error checking, and prompt for confirmation before performing destructive operations.

Prerequisites & Requirements

Before setting up the MCP server, ensure you have:

  • Node.js (version 18 or higher)
  • An active Outseta account with admin access
  • Outseta API credentials (API key and secret)
  • MCP-compatible AI assistant (Cursor, Claude Desktop, or similar)

Getting Your API Credentials

To use this MCP server, you'll need to obtain API credentials from your Outseta account:

  1. Log into your Outseta account
  2. Go to Settings > Integrations > API Keys
  3. Click Add API Keys
  4. Create a new API key with appropriate permissions
  5. Note down your:
    • Subdomain (e.g., if your Outseta URL is yourcompany.outseta.com, your subdomain is yourcompany)
    • API Key
    • API Secret

Important: Keep these credentials secure

Using the MCP Server with Cursor

  1. In Cursor, open your settings (Cmd/Ctrl + ,)
  2. Search for "MCP" or go to Extensions > MCP
  3. Add a new MCP server configuration:
    {
      "name": "outseta-admin",
      "command": "npx",
      "args": ["-y", "@outseta/admin-mcp-server"],
      "env": {
        "OUTSETA_SUBDOMAIN": "your-subdomain",
        "OUTSETA_API_KEY": "your-api-key",
        "OUTSETA_API_SECRET": "your-api-secret"
      }
    }
  4. Save the configuration and restart Cursor
  5. The Outseta tools will now be available in Cursor's AI assistant

For multiple accounts in Cursor, you can add multiple server configurations in the MCP settings:

[
  {
    "name": "outseta-production",
    "command": "npx",
    "args": ["-y", "@outseta/admin-mcp-server"],
    "env": {
      "OUTSETA_SUBDOMAIN": "yourcompany",
      "OUTSETA_API_KEY": "your-production-api-key",
      "OUTSETA_API_SECRET": "your-production-api-secret"
    }
  },
  {
    "name": "outseta-staging",
    "command": "npx",
    "args": ["-y", "@outseta/admin-mcp-server"],
    "env": {
      "OUTSETA_SUBDOMAIN": "yourcompany-staging",
      "OUTSETA_API_KEY": "your-staging-api-key",
      "OUTSETA_API_SECRET": "your-staging-api-secret"
    }
  }
]

Using the MCP Server with Claude Desktop

  1. Open Claude Desktop's configuration file:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the MCP server configuration:
    {
      "mcpServers": {
        "outseta-admin": {
          "command": "npx",
          "args": ["-y", "@outseta/admin-mcp-server"],
          "env": {
            "OUTSETA_SUBDOMAIN": "your-subdomain",
            "OUTSETA_API_KEY": "your-api-key",
            "OUTSETA_API_SECRET": "your-api-secret"
          }
        }
      }
    }
  3. Save the configuration and restart Claude Desktop
  4. The Outseta tools will now be available in Claude Desktop

Connecting to Multiple Outseta Accounts

You can configure multiple instances of the MCP server to connect to different Outseta accounts simultaneously. This is useful when you manage multiple Outseta accounts or want to separate different environments (production, staging, etc.).

Example Configuration for Multiple Accounts

In Claude Desktop's configuration file, you can add multiple server entries:

{
  "mcpServers": {
    "outseta-client-x: {
      "command": "npx",
      "args": ["-y", "@outseta/admin-mcp-server"],
      "env": {
        "OUTSETA_SUBDOMAIN": "client-x-subdomain",
        "OUTSETA_API_KEY": "your-production-api-key",
        "OUTSETA_API_SECRET": "your-production-api-secret"
      }
    },
    "outseta-client-y": {
      "command": "npx",
      "args": ["-y", "@outseta/admin-mcp-server"],
      "env": {
        "OUTSETA_SUBDOMAIN": "client-y-subdomain",
        "OUTSETA_API_KEY": "your-staging-api-key",
        "OUTSETA_API_SECRET": "your-staging-api-secret"
      }
    }
  }
}

How Multiple Instances Work

  • Each instance runs independently with its own API credentials
  • You can identify which account you're working with by mentioning the distinct name, ie. "How many people are associated with client-x in Outseta?"
  • All commands will be executed against the account specified in that instance's configuration
  • The AI assistant will have access to tools from all configured instances

Best Practices for Multiple Accounts

  • Use descriptive names: Choose server names that clearly identify the account or environment
  • Separate credentials: Use different API keys for each account for better security and access control
  • Document your setup: Keep track of which server connects to which account
  • Test configurations: Verify each instance works correctly after setup

Security Considerations

When using this MCP server, keep the following security practices in mind:

API Credential Security

  • Never commit API credentials to version control systems
  • Store credentials securely using environment variables
  • Regularly rotate your API keys as part of good security hygiene
  • Use the minimum required permissions for your API keys

Data Privacy

  • The MCP server only accesses data you explicitly request through AI commands
  • All API calls are made directly from your local environment to Outseta
  • No data is stored persistently by the MCP server
  • Review AI commands before confirming destructive operations

Access Control

  • Only install this server in trusted environments
  • Be cautious when sharing MCP configurations that include credentials
  • Create keys specifically for the MCP server

Contributing

Interested in contributing? See CONTRIBUTING.md for development setup and guidelines.

License

ISC