ReplyNodes

Agent Quickstart

Use the smallest integration that matches where your agent runs.

OptionUse it whenSource of truth
RESTYou control the HTTP call or tool functionOpenAPI + API Reference
SDKA generated downstream package is available to your teamsdk-generation/ configs and canonical OpenAPI
MCPYour client can connect to a remote Streamable HTTP serverGateway /mcp and generated MCP inventories
Agent SkillYour client reads instruction packagesservices/social-data-skills/generated/

REST tool

Expose a function that performs a GET against the exact path from the OpenAPI document, adds an Authorization Bearer header, passes only declared parameters, and returns the JSON envelope. Do not let an agent turn a read operation into a write operation.

SDK path

This repository does not publish SDK implementations. It does contain the pinned generation target list in sdk-generation/README.md: TypeScript (@replynodes/sdk), Python (replynodes), Go (github.com/replynodes/replynodes-go), Ruby (replynodes), and PHP (replynodes/replynodes) are downstream synchronization targets, not packages you can assume are installable from this repo. Verify package availability and the generated client's auth configuration before using one.

Client choice

Claude Code, Cursor, Codex, VS Code, Hermes, and OpenCode can all use the REST pattern. MCP-capable clients can use MCP. For skill-aware clients, install or reference the generated package that matches the provider; the package's SKILL.md, INSTALL.md, and references/ files are authoritative. Do not copy stale endpoint lists into prompts.

On this page