Skip to main content

MCP / AI Agents

Rynko exposes an MCP server so AI agents can design templates and generate documents through natural conversation.

ServerProductPurposeURL
Rynko RenderDocument GenerationCreate templates, generate PDFs and Excel fileshttps://api.rynko.dev/api/mcp-documents

The server uses MCP Streamable HTTP transport and work with Claude Desktop, Claude Code, Cursor, Windsurf, VS Code, Zed, and Microsoft 365 Copilot.


Rynko Render MCP​

Generate documents through natural conversation. Give your AI assistant access to your templates, and it can create draft templates, preview layouts, and generate production PDFs and Excel files.

Authentication: Personal Access Token (PAT)

→ Render MCP Setup & Tools


Client Configuration​

Cursor (.cursor/mcp.json):

{
"mcpServers": {
"rynko": {
"url": "https://api.rynko.dev/api/mcp-documents",
"headers": {
"Authorization": "Bearer pat_xxxxxxxxxxxxxxxx"
}
}
}
}

Windsurf (~/.codeium/windsurf/mcp_config.json):

{
"mcpServers": {
"rynko": {
"serverUrl": "https://api.rynko.dev/api/mcp-documents",
"headers": {
"Authorization": "Bearer pat_xxxxxxxxxxxxxxxx"
}
}
}
}

VS Code (.vscode/mcp.json):

{
"servers": {
"rynko": {
"type": "http",
"url": "https://api.rynko.dev/api/mcp-documents",
"headers": {
"Authorization": "Bearer pat_xxxxxxxxxxxxxxxx"
}
}
}
}

Claude Code:

claude mcp add --transport http rynko https://api.rynko.dev/api/mcp-documents \
--header "Authorization: Bearer pat_xxxxxxxxxxxxxxxx"
note

The Render MCP server authenticates with a Personal Access Token (pat_*), created under Settings → Personal Access Tokens. This is a different credential type from the workspace API keys used by the REST API and SDKs.