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/v1

Authentication

Authorization: Bearer qk_...

Create an API key

https://app.askquickly.ai/dashboard/developers

Install 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:read
knowledge_search

Search workspace knowledge bases and return grounded results.

knowledge_base_list

List available workspace knowledge bases.

playbook_list

Find playbooks an agent can run.

playbook_trigger

Trigger a governed playbook run with approval and audit controls.

playbook_run_get

Fetch a specific playbook run.

playbook_run_list

List recent playbook runs.

entity_list

Search workspace entities and CRM-style records.

entity_get

Fetch a specific entity record.

entity_create

Create a workspace-scoped entity record.

entity_update

Update a workspace-scoped entity record.

task_list

List recent Quickly task and audit records.

task_get

Fetch one task with execution details.

agent_list

List 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.