R

Recharge

Manage Recharge subscriptions and orders.

·No reviews yet
Repo
Share:

About

Auto-generated

Recharge is a Model Context Protocol server in the Commerce & Payments category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Recharge.

What is the Recharge MCP for?
The Recharge Model Context Protocol (MCP) server allows users to manage Recharge subscriptions and orders. It integrates with existing Recharge accounts to provide a programmable interface.
How can I authenticate with the Recharge MCP?
Authentication for the Recharge MCP is handled via an API key. You will need to provision an API key from your Recharge account and configure it within your MCP client.
What transport mechanism does the Recharge MCP use?
The Recharge MCP utilizes the standard I/O (stdio) transport. This means it communicates over standard input and output streams, which is suitable for local execution or integration with certain clients.
Is there a cost associated with using the Recharge MCP?
The Recharge MCP itself is open-source and provided by the community. However, its usage interfaces with the Recharge service, which may have its own associated costs or subscription plans.
What are the primary capabilities of the Recharge MCP?
This MCP is designed to manage ecommerce subscriptions and orders within the Recharge ecosystem. Specific tools and granular capabilities would depend on the implementation within your MCP client.
Are there any prerequisites for using the Recharge MCP?
A key prerequisite for using the Recharge MCP is an active Recharge account. You will also need to generate and provide a valid API key for authentication with the server.

Install Recharge

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "recharge": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-recharge"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "recharge": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-recharge"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "recharge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-recharge"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.