Back to MCP directory
publicPublicdnsLocal runtime

Autumn (Pricing API)

这是一个非官方的Autumn支付系统MCP服务器,提供创建客户、查询客户信息、管理发票和生成账单门户链接等功能。

article

README

🚀 秋季 MCP 服务器

这是一个非官方的 Autumn MCP 服务器,借助简便的接口,您可以访问 Autumn 的定价 API,高效管理客户。

🚀 快速开始

该服务器为您提供了便捷的方式来使用 Autumn 的功能,无论是自动安装还是手动安装,都能让您快速开启服务。

✨ 主要特性

  • 客户管理:支持创建客户、按 ID 获取客户、获取客户权限、管理发票以及生成计费 portal 链接等操作。
  • API 访问:可访问 Autumn API 的 OpenAPI.json 规范,涵盖 /attach/entitled/events 等多个接口。
  • AI 构建提示:提供 AI 构建提示(可爱、Bolt.new、v0 等)。

📦 安装指南

通过 Smithery 自动安装

要通过 Smithery 自动安装 Autumn MCP Server for Claude Desktop,可使用以下命令:

npx -y @smithery/cli install @SirTenzin/autumn-mcp-server --client claude

此安装方式同样适用于 Cursor, Windsurf, Witsy, Enconvo, Goose 和 SpinAI

无需 Smithery 的手动安装

如果您更倾向于手动安装,以下是具体步骤:

对于 Claude

  1. 使用 git clone 克隆此仓库。
  2. 在仓库文件夹中运行 bun install 安装依赖项。
  3. 复制 "index.ts" 的绝对路径。
  4. 将以下内容添加到您的 claude_desktop_config.json 或等效的 AI 应用配置文件:
{
    "mcpServers": {
        // ...
        "autumn": {
            "command": "bun",
            "args": [
                "run",
                "{YOUR ABSOLUTE PATH TO index.ts}",
                "--apiKey=\"{YOUR API KEY}\""
            ]
        }
    }
}

对于其他应用程序

如果要手动运行,您必须安装 Bun 来运行此 MCP 服务器。以下是适用于支持命令的其他应用程序的命令:

bun run {absolute path to index.ts} --apiKey="{your api key}"

您可以使用公共密钥或秘密密钥,但某些功能可能无法通过公共密钥访问。

📚 详细文档

资源

API 参考

该 MCP 服务器可访问的 Autumn API 的 OpenAPI.json 规范接口如下: | 接口 | 详情 | |------|------| | /attach | 提供相关功能 | | /entitled | 提供相关功能 | | /events | 提供相关功能 | | /customers | 提供相关功能 | | /customers/:id | 按 ID 获取客户相关功能 | | /customers/:id/billing_portal | 生成客户计费 portal 链接相关功能 |

展示

Claude 查找客户 Claude 查找发票 Claude 创建计费portal Claude 阅读 OpenAPI.json Claude 理解来自 OpenAPI.json 的响应架构

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client