Model Context Protocol
Connect AI agents to your Quickly command center.
Quickly exposes a hosted MCP server so compatible clients can discover workspace knowledge, list agents and playbooks, trigger governed workflows, and inspect audit logs through the same permission model as the public API. Included on every plan, including the free tiers.
Server URL
https://mcp.askquickly.ai/api/mcp/v1Authentication
Authorization: Bearer qk_...Create an API key
https://app.askquickly.ai/dashboard/developersInstall from Codex
Create a workspace API key in Quickly, store it as an environment variable, then register the Streamable HTTP MCP server.
export QUICKLY_API_KEY="qk_..."
# ~/.codex/config.toml
[mcp_servers.quickly]
url = "https://mcp.askquickly.ai/api/mcp/v1"
bearer_token_env_var = "QUICKLY_API_KEY"Tool surface
The v1 MCP catalog is curated for agent workflows: read knowledge, inspect records, trigger playbooks, and audit outcomes. Destructive actions require the right scope and still pass through Quickly's workflow safety controls.
API key scopes
knowledge:readknowledge:writeplaybooks:readplaybooks:executelogs:readagents:readmessages:readmessages:writeweb:readknowledge_searchSearch workspace knowledge bases and return grounded results.
knowledge_base_listList available workspace knowledge bases.
playbook_listFind playbooks an agent can run.
playbook_triggerTrigger a governed playbook run with approval and audit controls.
playbook_run_getFetch a specific playbook run.
playbook_run_listList recent playbook runs.
entity_listSearch workspace entities and CRM-style records.
entity_getFetch a specific entity record.
entity_createCreate a workspace-scoped entity record.
entity_updateUpdate a workspace-scoped entity record.
task_listList recent Quickly task and audit records.
task_getFetch one task with execution details.
agent_listList scheduled playbook agents.
Agent-readable discovery
AI agents can start with the public discovery files below to find the API, MCP server, setup instructions, and safety model without crawling the full marketing site.