Token导航 LogoToken导航TokenDH.com
Agent Creator MCP logo
AI代理stdio官方级别未说明来源级核验

Agent Creator MCP

MCP Server

一个用于创建和部署AI代理到Salesforce组织的服务,通过交互式问题收集需求并生成代理元数据。

工具数

0

提示词数

0

GitHub Stars

0

资源数

0
AI代理PythonClaudeClaude DesktopClaudeCursor

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

flemx

提供方

flemx

最后核验

2026/5/17 20:20

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

uv run agent-creator-mcp --transport sse

详细介绍

代理创建者MCP服务器

agent-creator MCP服务器旨在促进Agentforce的创建和部署。它与用户交互以收集需求并生成代理元数据,然后可以将其部署到Salesforce组织。

使用示例

使用时 agent-creator-mcp 服务器在克劳德,你可以:

  • 创建代理:服务器将引导您完成一系列问题,以了解您的需求,例如:

- “你想用这个人工智能代理解决什么业务问题?” - “什么会让这个人工智能代理为你成功?” - “你工作的公司叫什么名字?” - “你想给这个代理人取什么名字?”

  • 生成和部署代理元数据:在收集到必要的信息后,服务器会生成代理元数据并将其部署到Salesforce组织。

快速启动

安装

配置选项

要部署代理,您需要使用Salesforce凭据配置服务器。有两种传输方式可供选择:STDIO和SSE。

使用STDIO传输

STDIO在您的本地计算机上运行,由MCP客户端自动管理。在MCP配置文件中使用以下配置模板,用实际凭据替换占位符:

"ai-assist": {
    "command": "uv",
    "args": [
        "--directory",
        "//agent-creator-mcp.",
        "run",
        "ai-assist"
    ],
    "env": {
        "SALESFORCE_USERNAME": "your_username",
        "SALESFORCE_PASSWORD": "your_password"
    }
}

使用SSE传输

服务器发送事件(SSE)传输可以在本地或远程运行,并通过网络进行通信。这种方法对于查看日志和在机器之间共享服务器非常有用。

  1. 使用SSE传输运行服务器:
SALESFORCE_USERNAME=your_username SALESFORCE_PASSWORD=your_password uv run ai-assist --transport sse
  1. 或者,您可以从以下位置加载环境变量 .env 文件,然后运行:
uv run agent-creator-mcp --transport sse
  1. 您可以指定自定义端口(默认值为8000):
uv run agent-creator-mcp --transport sse --port 8080
  1. 将以下内容添加到MCP配置文件中:
"agent-creator-mcp": {
    "url": "http://0.0.0.0:8000/sse"
}

确保URL中的端口与启动服务器时指定的端口匹配。

在Claude桌面中运行

要在Claude Desktop中设置ai辅助MCP服务器,您需要将其添加到Claude的配置文件中:

  • 在MacOS上: ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • 在Windows上: %APPDATA%/Claude/claude_desktop_config.json

您可以通过以下方式访问此文件:

  1. 打开计算机上的Claude菜单,选择“设置…”
  2. 点击左侧栏中的“开发人员”
  3. 点击“编辑配置”

配置服务器时,您可以使用STDIO或SSE传输:

使用STDIO传输(本地运行):

{
  "mcpServers": {
    "ai-assist": {
      "command": "uv",
      "args": [
        "--directory",
        "/agent-creator-mcp",
        "run",
        "agent-creator-mcp"
      ],
      "env": {
        "SALESFORCE_USERNAME": "your_username",
        "SALESFORCE_PASSWORD": "your_password"
      }
    }
  }
}

使用SSE传输(可以在本地或远程运行):

  1. 使用SSE传输启动服务器:
SALESFORCE_USERNAME=your_username SALESFORCE_PASSWORD=your_password uv run ai-assist --transport sse
  1. 将此添加到您的Claude Desktop配置中:
{
  "mcpServers": {
    "ai-assist": {
      "url": "http://0.0.0.0:8000/sse"
    }
  }
}
  1. 更新配置后,完全重新启动Claude Desktop。

有关在Claude Desktop中设置MCP服务器的更多详细说明,请参阅 MCP官方文件.

在游标中运行

在Cursor中,MCP服务器在使用STDIO时遇到了一些问题,因此建议使用SSE传输方法。有关在Cursor中设置MCP的详细说明,请参阅 光标MCP文档.

  1. 首先使用上一节中描述的SSE传输方法运行服务器。
  1. 将MCP配置添加到Cursor的配置文件中:
"mcp-test": {
    "url": "http://0.0.0.0:8000/sse"
}
  1. 确保在URL中使用与服务器配置匹配的正确端口。

调试

对于调试,请使用 MCP检查员 以可视化服务器的操作并排除故障。使用以下方式启动它:

npx @modelcontextprotocol/inspector uv --directory /agent-creator-mcp run agent-creator-mcp -e SALESFORCE_USERNAME your_username -e SALESFORCE_PASSWORD your_password

启动后,检查器将显示一个URL,您可以在浏览器中访问该URL以开始调试。

提升特定客户的成果

光标

在Cursor中,您可以创建自定义规则来增强代理创建过程。例如:

# After the generate_agent_metadata is called:
- Create a folder in our project root if it does not exist called: agents
- Store the JSON output in the agents folder: agent_name.json
- Create a visual markdown of all the agent information including description, name, utterances, topics, and actions
- Generate a Mermaid diagram showing the Agent as a Node with Topics as sub-Nodes, and Actions as subnodes of the topics
- After it is generated, ask if the user wants to deploy the agent

克劳德

在Claude中,您可以创建一个项目,其中包含使用其他MCP服务器来增强代理创建过程的说明:

- Guide the user to creating their agentforce agent.
- Use the get_agent_requirements tool to help gather requirements.
- Once enough requirements have been collected, call generate_agent_metadata to generate the whole metadata.
- Visualize the topics and agent metadata in the canvas with a React page showing the agent as a node, with topics as sub-nodes, and actions as sub-nodes of topics.
- Once the topics have been generated, call the deploy_agent to deploy the agent.
- Check if the agent deployment status is successful.

目录标签

目录标签

AI代理PythonClaude混合部署Salesforce集成元数据生成自动化部署企业解决方案

支持客户端

Claude DesktopClaudeCursor

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP