Subotiz MCP

Created By
Subotiz3 months ago
Connect AI assistants to Subotiz - Using Subotiz's external capabilities through natural language
Overview

Subotiz MCP

Subotiz MCP 是基于 Model Context Protocol 的开放工具集服务器。AI 代理可通过标准化 MCP 工具与 Subotiz 支付与订阅能力交互(客户、商品、定价、订阅、交易、退款、发票、Webhook 及开发者文档查询等)。

了解更多:了解 Subotiz 产品与能力,请访问 官网首页

前置条件

  1. 支持 Streamable Http MCP 的宿主(如VS Code 1.101+、Claude Desktop、Cursor、Trae 等)
  2. 有效的 Subotiz 访问凭证(Token)

Subotiz MCP地址

对外 MCP 配置

连接官方托管服务时,只需配置 URL 与 Authorization: Bearer无需其他请求头

Cursor 配置示例(写入 Cursor 的 MCP 设置即可):

{
  "mcpServers": {
    "my-remote-server": {
      "url": "{{MCP_URL}}",
      "headers": {
        "Authorization": "Bearer {{YOUR_TOKEN_HERE}}"
      }
    }
  }
}

{{MCP_URL}}替换为你所需要使用环境的MCP地址,将 {{YOUR_TOKEN_HERE}} 替换为你的 Subotiz 访问 Token 即可。在 VS Code、Cursor、Claude Desktop 等宿主中,把上述内容合并到各自的 MCP 配置(如 serversmcpServers)中即可使用。

API Key 获取:配置中的 Token 即 Subotiz API Key。获取步骤与认证方式请参阅 认证文档


工具列表

完整工具列表(工具名、类别、path、说明)在单独文档中维护,便于同步更新:TOOLS.md。更多接口与参数以 Subotiz 开发者文档 为准。


Subotiz MCP

Subotiz MCP is an open toolset server based on the Model Context Protocol. AI agents can interact with Subotiz payment and subscription capabilities through standardized MCP tools (customers, products, pricing, subscriptions, trades, refunds, invoices, webhooks, and developer documentation lookup).

Learn more: For an overview of Subotiz products and capabilities, visit the Subotiz homepage.

Prerequisites

  1. A host that supports Streamable HTTP MCP (e.g. VS Code 1.101+, Claude Desktop, Cursor, Trae, etc.)
  2. A valid Subotiz access token

Subotiz MCP URL

MCP Configuration

When connecting to the official hosted service, you only need to configure the URL and Authorization: Bearer; no other request headers are required.

Cursor example (add to Cursor’s MCP settings):

{
  "mcpServers": {
    "my-remote-server": {
      "url": "{{MCP_URL}}",
      "headers": {
        "Authorization": "Bearer {{YOUR_TOKEN_HERE}}"
      }
    }
  }
}

Replace {{MCP_URL}} with the MCP URL for your target environment and {{YOUR_TOKEN_HERE}} with your Subotiz access token. In hosts such as VS Code, Cursor, or Claude Desktop, merge the above into their respective MCP configuration (e.g. servers or mcpServers) to use it.

Obtaining an API Key: The token in the configuration is your Subotiz API Key. For steps to create one and authentication details, see the Authentication guide.


Tool List

The full tool list (name, category, path, description) is maintained in a separate document for easier updates: TOOLS.md. For more endpoints and parameters, see the Subotiz Developer Documentation.

Server Config

{
  "mcpServers": {
    "my-remote-server": {
      "url": "https://api.subotiz.com/mcp",
      "headers": {
        "Authorization": "Bearer {{YOUR_TOKEN_HERE}}"
      }
    }
  }
}
Project Info
Created At
3 months ago
Updated At
2 days ago
Author Name
Subotiz
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Bring your real authenticated browser session to AI coding agents. Local-first MCP server + Chrome MV3 extension. No cloud. No telemetry.
@Cubenest

peek records the user's actual logged-in browser (DOM via rrweb, console events, network metadata, optional response bodies via opt-in Deep capture) through a Chrome MV3 extension. The extension ships events through a native-messaging stdio bridge to a local MCP server (peek-mcp), which persists them to a SQLite database at ~/.peek/sessions.db. AI coding agents (Claude Code, Cursor, Cline, Windsurf) read sessions from the database via 10 MCP tools: Tool What it does list_recent_sessions List recently recorded sessions (id, origin, ts, event count). get_session_summary LLM-readable narrative summary of a session. get_session_console_errors Console errors recorded in a session. get_session_network_errors Failed/notable network requests in a session. get_user_action_before_error Last N user actions before a console error. generate_playwright_repro Generate a runnable Playwright test from a session. get_dom_snapshot Reconstruct the DOM at a given timestamp. query_dom_history Timeline of attribute/text changes for a selector. request_authorization Side-panel consent for write actions (Level 3). execute_action Dispatch a UI action (gated by permission level + destructive blocklist). Why local-first matters Every other "browser session for AI" tool ships to a vendor cloud. peek's SQLite + extension live on the user's machine — no remote endpoints, no telemetry. The privacy policy (docs/peek/PRIVACY_POLICY.md) is the source of truth. Install # 1. Add the MCP server to Claude Code claude mcp add peek -- npx -y @peekdev/mcp # 2. Install the Chrome extension from the Chrome Web Store # (link added once the CWS listing is approved)

a day ago