@replynodes/mcp
Official@replynodes/mcp
Claude, Cursor, Codex, OpenClaw, Hermes 또는 다른 Model Context Protocol 클라이언트를 Replynodes 계정에 연결하여, AI 에이전트가 소셜 채널을 나열하고, 게시물을 예약하고, 게시물용 이미지/비디오를 생성하고, Replynodes 워크스페이스를 채팅에서 직접 관리할 수 있게 하세요.
Replynodes는 이미 원격 MCP 서버(https://app.replynodes.com/api/mcp)를 실행하고 있습니다. 이 패키지는 로컬(stdio) 서버만 지원하는 MCP 클라이언트를 위한 가볍고 유지보수가 필요 없는 브리지입니다. 모든 것을 mcp-remote를 사용해 해당 원격 서버로 전달하며, Replynodes API 키로 인증합니다.
클라이언트가 이미 원격 MCP 서버를 기본 지원한다면(예: Claude.ai 사용자 지정 커넥터, Claude Code, VS Code Copilot), 이 패키지가 전혀 필요 없습니다. 아래의 네이티브 원격 MCP를 참조하세요.
API 키 받기
app.replynodes.com에 로그인합니다.
개발자 → API 키 및 에이전트 (app.replynodes.com/developers)로 이동하여 키를 생성합니다.
비밀로 유지하세요. Replynodes 조직에 대한 전체 액세스 권한을 부여합니다.
Related MCP server: social-mic-mcp
설정
Claude Code (플러그인)
이 저장소는 Claude Code 플러그인 마켓플레이스이기도 하므로 다음 명령으로 설치할 수 있습니다:
/plugin marketplace add replynodes/replynodes-mcp
/plugin install replynodes-mcp@replynodes-mcpReplynodes API 키를 입력하라는 메시지가 표시됩니다. Claude Code가 키를 저장하고 MCP 서버를 시작합니다.
Claude Desktop / Claude Code (수동 MCP 구성)
MCP 구성(claude_desktop_config.json 또는 .mcp.json)에 추가하세요:
{
"mcpServers": {
"replynodes": {
"command": "npx",
"args": ["-y", "@replynodes/mcp"],
"env": {
"REPLYNODES_API_KEY": "your-api-key-here"
}
}
}
}Cursor / Windsurf
동일한 형식으로 Cursor의 mcp.json / Windsurf의 MCP 설정에 추가하세요:
{
"mcpServers": {
"replynodes": {
"command": "npx",
"args": ["-y", "@replynodes/mcp"],
"env": { "REPLYNODES_API_KEY": "your-api-key-here" }
}
}
}Codex CLI / OpenClaw / 기타 에이전트 프레임워크
stdio 명령으로 직접 실행하세요:
REPLYNODES_API_KEY=your-api-key-here npx -y @replynodes/mcp프레임워크의 MCP 도구 구성을 다른 stdio MCP 서버를 구성할 때와 같은 방식으로 해당 명령을 가리키세요.
네이티브 원격 MCP (설치 불필요)
원격 MCP를 직접 지원하는 클라이언트는 이 패키지를 건너뛰고 다음 주소로 바로 연결할 수 있습니다:
URL: https://app.replynodes.com/api/mcp
Header: Authorization: Bearer <your-api-key>정적 API 키 대신 MCP OAuth 검색을 지원하는 클라이언트를 위해 OAuth 기반 커넥터 흐름도 https://app.replynodes.com/api/mcp-oauth에서 제공됩니다.
사용 가능한 도구
도구 | 설명 |
| 그룹/고객을 나열하여 통합을 필터링합니다. |
| 연결된 소셜 통합(채널)을 나열하며, 선택적으로 그룹으로 범위를 지정할 수 있습니다. |
| 특정 통합에 게시물을 예약하기 위한 스키마/필수 필드를 가져옵니다. |
| 필요한 ID/필드를 확보한 후 통합 작업을 트리거합니다. |
| 하나 이상의 통합에 게시물을 예약합니다. |
| 현재 조직의 게시물을 최신순으로 나열합니다. |
| 기존 게시물을 제자리에서 편집합니다. |
| 게시된 게시물의 성과를 읽습니다. |
| ReplyNodes 에이전트에게 질문합니다. |
| 공개 URL 또는 붙여넣은 소스를 출처가 있는 브리프와 초안으로 변환합니다. |
| 정규화된 브리프와 세 가지 배포 각도를 생성합니다. |
| 게시물에 첨부할 이미지를 생성합니다. |
| 비디오 콘텐츠를 생성하고 공급자별 옵션을 해결합니다. |
| 공개 URL에서 원격 이미지/비디오를 미디어 라이브러리에 업로드합니다. |
도구 사용 가능 여부는 Replynodes 요금제와 연결된 통합에 따라 다릅니다.
환경 변수
변수 | 필수 | 설명 |
| 예 | Replynodes API 키입니다. |
| 아니요 | 원격 MCP 엔드포인트를 재정의합니다(기본값: |
replynodes-mcp에 전달되는 추가 CLI 인수는 mcp-remote로 전달됩니다(예: --debug).
보안
API 키는 Replynodes 조직에 대한 액세스 권한을 부여합니다. 이 키는 app.replynodes.com으로 직접 전송되는 Bearer 토큰으로만 사용되며, 이 패키지는 다른 곳으로 전송하지 않습니다. 비밀번호처럼 취급하고, 유출된 경우 개발자 → API 키 및 에이전트 (app.replynodes.com/developers)에서 교체하세요.
관련 자료
이 작업의 에이전트 측(콘텐츠가 integrationSchedulePostTool(일명 schedulePostTool)에 도달하기 전에 초안을 작성, 검토, 준비하는 스킬)을 찾고 계신가요? Awesome Social Media Skills를 참조하세요. 소셜 콘텐츠를 위한 휴대용 AI 에이전트 스킬의 오픈소스 라이브러리이며, 두 가지가 어떻게 함께 작동하는지 보여주는 빠른 시작도 포함되어 있습니다.
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceConnects MCP clients (Claude Desktop, Cursor, Cline, Zed) to llmsproxy.ai, exposing chat, coding, and retrieval capabilities as MCP tools, resources, and prompts.12Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables generating, scheduling, and publishing social media posts via Claude or an agent through the MCP protocol.17MIT
- AlicenseAqualityBmaintenanceGive any AI agent — Claude, Cursor, Windsurf, or any MCP-compatible client — full control over your social media through natural language.2113MIT
- AlicenseBqualityDmaintenanceConnects AI assistants like Claude to productivity tools such as Notion, Monday, Jira, and Slack via a remote MCP integration hub.7143MIT
Related MCP Connectors
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Clip videos into captioned shorts, add captions & schedule posts — from Claude, ChatGPT, Cursor.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/replynodes/replynodes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server