Back to MCP directory
publicPublicdnsLocal runtime

autumn-mcp-server

Autumn MCP Server是一个非官方的MCP服务,提供便捷接口访问Autumn定价API,用于管理客户信息、权益和账单。

article

README

🚀 秋日 MCP 服务器

这是一个为 Autumn 提供的非官方 MCP 服务器,它提供了访问 Autumn 定价 API 的简便接口,能帮助您轻松管理客户。

smithery 徽章

✨ 主要特性

本服务器具备以下实用工具和功能:

  • [x] 创建客户
  • [x] 按 ID 获取客户
  • [x] 获取客户的权限
  • [x] 管理他们的发票
  • [x] 生成一个计费 portal 链接

📚 详细文档

资源

API 参考

MCP 服务器可以访问 Autumn API 的 OpenAPI.json 规范,涵盖以下接口:

  • [x] /attach
  • [x] /entitled
  • [x] /events
  • [x] /customers
  • [x] /customers/:id
  • [x] /customers/:id/billing_portal

提示

  • [x] 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 接口来实现各种功能,如创建客户、获取客户信息等。

展示

Claude 查找客户 Claude 查看计费信息 Claude 生成计费链接

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