MCP / AI Agents
Rynko exposes an MCP server so AI agents can design templates and generate documents through natural conversation.
| Server | Product | Purpose | URL |
|---|---|---|---|
| Rynko Render | Document Generation | Create templates, generate PDFs and Excel files | https://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)
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"
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.