npm @replynodes/mcpstreamable-httpMITupdated 19d ago
Connect Claude, Cursor, Codex, OpenClaw, Hermes, or any other Model Context Protocol client to your Replynodes account, so your AI agent can list your social channels, schedule posts, generate images/video for posts, and manage your Replynodes workspace directly from chat.
replynodes 能做什么?
@replynodes/mcp
Connect Claude, Cursor, Codex, OpenClaw, Hermes, or any other Model Context Protocol client to your Replynodes account, so your AI agent can list your social channels, schedule posts, generate images/video for posts, and manage your Replynodes workspace directly from chat.
Replynodes already runs a remote MCP server
(https://app.replynodes.com/api/mcp). This package is a thin,
zero-maintenance bridge for MCP clients that only support local (stdio)
servers — it forwards everything to that remote server using
mcp-remote, and authenticates
with your Replynodes API key.
If your client already supports remote MCP servers natively (e.g. Claude.ai custom connectors, Claude Code, VS Code Copilot), you don't need this package at all — see Native remote MCP below.
Get an API key
- Log in to app.replynodes.com.
- Go to Developers → API Keys & Agents (app.replynodes.com/developers) and create a key.
- Keep it secret — it grants full access to your Replynodes organization.
Setup
Claude Code (as a plugin)
This repo is also a Claude Code plugin marketplace, so you can install it with:
/plugin marketplace add replynodes/replynodes-mcp
/plugin install replynodes-mcp@replynodes-mcp
You'll be prompted for your Replynodes API key; Claude Code stores it and starts the MCP server for you.
Claude Desktop / Claude Code (manual MCP config)
Add to your MCP config (claude_desktop_config.json or .mcp.json):
{
"mcpServers": {
"replynodes": {
"command": "npx",
"args": ["-y", "@replynodes/mcp"],
"env": {
"REPLYNODES_API_KEY": "your-api-key-here"
}
}
}
}
Cursor / Windsurf
Same shape, under Cursor's mcp.json / Windsurf's MCP settings:
{
"mcpServers": {
"replynodes": {
"command": "npx",
"args": ["-y", "@replynodes/mcp"],
"env": { "REPLYNODES_API_KEY": "your-api-key-here" }
}
}
}
Codex CLI / OpenClaw / other agent frameworks
Run it directly as a stdio command:
REPLYNODES_API_KEY=your-api-key-here npx -y @replynodes/mcp
Point your framework's MCP tool config at that command the same way you would configure any other stdio MCP server.
Native remote MCP (no install)
Clients that speak remote MCP directly can skip this package entirely and connect straight to:
URL: https://app.replynodes.com/api/mcp
Header: Authorization: Bearer <your-api-key>
An OAuth-based connector flow is also available at
https://app.replynodes.com/api/mcp-oauth for clients that support MCP OAuth
discovery instead of static API keys.
Available tools
| Tool | What it does |
|---|---|
groupList |
List your groups/customers, for filtering integrations |
integrationList |
List connected social integrations (channels), optionally scoped to a group |
integrationSchema |
Get the schema/required fields for scheduling a post to a given integration |
triggerTool |
Trigger an integration action once you have the ids/fields it needs |
integrationSchedulePostTool (a.k.a. schedulePostTool) |
Schedule a post to one or more integrations |
postsList |
List posts for the current organization, most recent first |
postsUpdate |
Edit an existing post in place |
postAnalytics |
Read performance for a published post |
ask_replynodes |
Ask the ReplyNodes agent a question |
draftPostFromSource |
Turn a public URL or pasted source into a sourced brief and draft |
planFounderDistributionAngles |
Create a normalized brief and three distribution angles |
generateImageTool |
Generate an image to attach to a post |
generateVideoTool / generateVideoOptions / videoFunctionTool |
Generate video content and resolve provider-specific options |
uploadFromUrlTool |
Upload a remote image/video into the media library from a public URL |
Tool availability depends on your Replynodes plan and connected integrations.
Environment variables
| Variable | Required | Description |
|---|---|---|
REPLYNODES_API_KEY |
yes | Your Replynodes API key |
REPLYNODES_MCP_URL |
no | Override the remote MCP endpoint (defaults to https://app.replynodes.com/api/mcp) |
Any extra CLI arguments passed to replynodes-mcp are forwarded to
mcp-remote (e.g. --debug).
Security
Your API key grants access to your Replynodes organization. It is only used
as a Bearer token sent directly to app.replynodes.com — this package does
not transmit it anywhere else. Treat it like a password; rotate it in
Developers → API Keys & Agents (app.replynodes.com/developers) if it leaks.
Related
Looking for the agent side of this — skills that draft, review, and prepare
content before it reaches integrationSchedulePostTool (a.k.a. schedulePostTool)? See
Awesome Social Media Skills,
an open-source library of portable AI agent skills for social content, with
a quickstart
showing how the two fit together.
License
MIT
安装
把 replynodes 添加到你的客户端。选择你正在使用的那个。
{
"servers": {
"mcp": {
"type": "http",
"url": "https://app.replynodes.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @replynodes/mcpcodex mcp add mcp -- npx -y @replynodes/mcpamp mcp add mcp -- npx -y @replynodes/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@replynodes/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@replynodes/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@replynodes/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@replynodes/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@replynodes/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@replynodes/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@replynodes/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @replynodes/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
12 个工具
replynodes 向已连接的智能体提供 12 个工具。
- groupList
- List your groups/customers, for filtering integrations
- integrationList
- List connected social integrations (channels), optionally scoped to a group
- integrationSchema
- Get the schema/required fields for scheduling a post to a given integration
- triggerTool
- Trigger an integration action once you have the ids/fields it needs
- postsList
- List posts for the current organization, most recent first
- postsUpdate
- Edit an existing post in place
- postAnalytics
- Read performance for a published post
- ask_replynodes
- Ask the ReplyNodes agent a question
- draftPostFromSource
- Turn a public URL or pasted source into a sourced brief and draft
- planFounderDistributionAngles
- Create a normalized brief and three distribution angles
- generateImageTool
- Generate an image to attach to a post
- uploadFromUrlTool
- Upload a remote image/video into the media library from a public URL
评分
83 / 100
优秀
- 文档25/25
- 维护19/25
- 可信度16/20
- 能力8/15
- 安装体验15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 12 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 12 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.1.3最新 | 2026年8月20日 |
| 0.1.2 | 2026年7月24日 |