Skip to content

PAT Tokens

Personal Access Tokens (PAT) for non-interactive authentication with iopho MCP servers and CLIs.

Personal Access Tokens (PAT) let you authenticate with any iopho product without interactive OAuth. PATs are permanent until revoked — ideal for CI pipelines, long-running agents, and headless environments.

All iopho PATs use the rdk_ prefix:

rdk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Each product has its own token settings page:

ProductToken settings
Reedleapp.reedle.iopho.com → Settings → Integrations → CLI Token
PromptNoteapp.promptnoteapp.com → Settings → API → Generate Token
Wribbleapp.wribble.iopho.com → Settings → Integrations → CLI Token
Cattoapp.catto.iopho.com → Settings → Integrations → CLI Token
Knottoapp.knotto.iopho.com → Settings → Integrations → CLI Token
Terminal window
reedle auth token rdk_your_token_here

Add to your MCP client config (e.g. ~/.claude/settings.json):

{
"mcpServers": {
"reedle": {
"command": "npx",
"args": ["-y", "reedle-cli", "mcp"],
"env": {
"REEDLE_TOKEN": "rdk_your_token_here"
}
}
}
}
  • PATs are stored as SHA-256 hashes in the database — the raw token is never stored
  • Tokens are scoped to your account and obey all RLS policies
  • Revoke tokens any time from the product settings page