Skip to main content
Glama

AstroFabric MCP 服务器

AstroFabric 是一个智能体 AI 平台:自主智能体在增长、营收和数字化运营中,从目标到成果全程推进工作。这个 MCP 服务器将整个平台带到你的编辑器后面——用自然语言给它一个开放式的目标,它就会规划并执行任务:市场和竞争情报、网站和技术审计、基于实时购买信号验证的潜在客户名单、外联、内容和需求计划、从图片和视频到设计页面的成品创意,以及交付到 100+ 个已连接的应用——并连同背后的证据一起返回最终结果。

本仓库既是托管 AstroFabric MCP 端点的连接器(添加远程 URL 和你的 API 密钥即可开始工作),也是面向偏好本地进程的客户端的可运行 stdio 服务器——参见本地运行

前提条件

  1. 一个付费套餐的 AstroFabric 工作区——在 https://www.astrofabric.ai 注册

  2. 一个 API 密钥:在 AstroFabric 控制台中,打开 API 密钥创建密钥,并复制 ek_live_... 令牌(只显示一次)。

Related MCP server: Agentic Control Framework (ACF)

设置

每个客户端都使用相同的端点(https://www.astrofabric.ai/api/mcp)和相同的密钥。选择你的客户端:

claude mcp add --transport http astrofabric https://www.astrofabric.ai/api/mcp --header "Authorization: Bearer ek_live_YOUR_KEY_HERE"

添加一个使用裸 URL 的自定义连接器,并在提示时登录——服务器会引导你完成 AstroFabric 登录,并将一个作用域密钥交给客户端,你可以从控制台撤销该密钥:

https://www.astrofabric.ai/api/mcp

添加到 .cursor/mcp.json(项目)或 ~/.cursor/mcp.json(全局):

{
  "mcpServers": {
    "astrofabric": {
      "url": "https://www.astrofabric.ai/api/mcp",
      "headers": { "Authorization": "Bearer ek_live_YOUR_KEY_HERE" }
    }
  }
}

添加到 cline_mcp_settings.json(Cline → MCP Servers → 配置,或 Remote Servers → 按 URL 添加):

{
  "mcpServers": {
    "astrofabric": {
      "type": "streamableHttp",
      "url": "https://www.astrofabric.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer ek_live_YOUR_KEY_HERE"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

添加到 .vscode/mcp.json

{
  "servers": {
    "astrofabric": {
      "type": "http",
      "url": "https://www.astrofabric.ai/api/mcp",
      "headers": { "Authorization": "Bearer ek_live_YOUR_KEY_HERE" }
    }
  }
}

添加到 ~/.codex/config.toml

[mcp_servers.astrofabric]
url = "https://www.astrofabric.ai/api/mcp"
http_headers = { "Authorization" = "Bearer ek_live_YOUR_KEY_HERE" }

添加到 ~/.gemini/settings.jsonmcpServers 下:

{
  "astrofabric": {
    "httpUrl": "https://www.astrofabric.ai/api/mcp",
    "headers": { "Authorization": "Bearer ek_live_YOUR_KEY_HERE" }
  }
}

添加到 ~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "astrofabric": {
      "serverUrl": "https://www.astrofabric.ai/api/mcp",
      "headers": { "Authorization": "Bearer ek_live_YOUR_KEY_HERE" }
    }
  }
}

快捷方式:安装 CLI 后,运行 astrofabric connect <client> 会打印你的客户端配置,密钥已自动填入。

如果你的客户端无法发送请求头,密钥也可以放在 URL 中:https://www.astrofabric.ai/api/mcp?key=ek_live_YOUR_KEY_HERE——请将整个 URL 视为机密。

两个工具面

  • 默认(上面的 URL):一个工具,mission_agent——自主任务运行器。最适合编辑器:工具列表中一个条目,背后是整个平台。

  • 完整目录:在 URL 后追加 ?tools=all,还会暴露所有单独的数据和执行工具(SEO 和关键词情报、广告库、买家意图搜索、邮箱查找和验证、创意生成等),以及你的工作区已连接的任何 MCP 服务器。

使用方法

要求结果,而不是步骤:

"建立一份 40 家对仓库机器人表现出购买意向的公司的名单,验证邮箱,并为每家起草一封首次触达邮件。"

"拆解 competitor.com——广告、关键词、招聘、定位——并给我三个抢占市场的打法。"

结果以 [thread:<id>] 行开头。在后续消息中传入该 id 作为 thread_id("验证这些邮箱"、"将它们格式化为 LinkedIn Ads"),智能体会带着之前所有已询问和已交付内容的完整记忆继续工作。它可能会回复一个澄清问题;用同样的方式回答即可。

本地运行(stdio)

本仓库也是一个可运行的 stdio MCP 服务器——相同的 mission_agent 工具,通过 AstroFabric 平台使用你的密钥执行任务。适用于偏好本地进程而非远程 URL 的客户端:

{
  "mcpServers": {
    "astrofabric": {
      "command": "npx",
      "args": ["-y", "github:sam1siam/astrofabric-mcp"],
      "env": { "ASTROFABRIC_API_KEY": "ek_live_YOUR_KEY_HERE" }
    }
  }
}

或者使用 Docker:docker build -t astrofabric-mcp . && docker run -i --rm -e ASTROFABRIC_API_KEY=ek_live_... astrofabric-mcp

偏好终端?CLI

同一个平台也以零依赖 CLI 的形式提供(npm 上的 astrofabric):

npm install -g astrofabric

astrofabric login --key ek_live_...
astrofabric run "Audit example.com and list the top 5 fixes"

在编码智能体(Claude Code、Codex、Gemini CLI)中,整个设置只需一个提示词:"帮我安装 AstroFabric CLI,然后运行 astrofabric docs 来了解它。"astrofabric connect cursor(或 claude-codecodexgeminivscodewindsurf)会为每个客户端打印可直接粘贴的 MCP 配置。

注意事项

  • 任务会从你的工作区积分中扣费;控制台的用量页面会显示每次运行。

  • 对已连接系统的写入遵循你工作区的审批设置——自主写入可以被门控到人工审批队列。

  • 也支持通过标准发现机制使用 OAuth 2.1(动态客户端注册 + PKCE),适用于偏好登录而非密钥的客户端。

许可证

本连接器仓库的内容采用 MIT 许可证。AstroFabric 平台是商业服务。

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Enterprise-grade MCP server with multi-agent system for business AI transformation across finance, healthcare, retail, and other domains. Provides specialized AI agents for data analysis, API execution, business validation, and report generation with real-time monitoring and observability.
  • A
    license
    A
    quality
    A
    maintenance
    AI Agent Mission Control — 200+ MCP tools across 31 domains. Manage agents, experiments, workflows, crews, skills, tools, credentials, approvals, signals, budgets, marketplace, knowledge bases, chatbots, and more. Self-hosted, open-source (AGPL-3.0). Supports stdio + Streamable HTTP/SSE with OAuth 2.0 auth.
    34
    60
    AGPL 3.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    Provides AI agents with operational customer context, including typed revenue objects, persistent state, scoped tools, and human-in-the-loop handoffs through MCP, REST, and CLI.
    36
    12
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.

  • Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.

  • Build, validate, and deploy multi-agent AI solutions from any AI environment.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sam1siam/astrofabric-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server