# Process Street — how to use (mcp.ai)

Connect your Process Street account and use 5 tools for task management straight from your AI agent. Connect with your own API key. Process Street supports creating and running checklists, SOPs, and workflows, helping teams automate recurring processes and track compliance.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_process_street?ms=1787295840000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `process_street_complete_workflow_run`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/process_street`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/process_street/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/process_street/complete/workflow/run` — This tool marks an entire workflow run as completed in Process Street. It first retrieves the current workflow run details, then updates the status to 'Completed' while preserving other fields like na
  - body: { workflow_run_id: string }
- `POST https://api.mcp.ai/api/process_street/create/workflow/run` — This tool creates a new workflow run from a specified workflow template. It is one of the most fundamental operations in Process Street, allowing users to initiate a new instance of a workflow. The to
  - body: { name?: string, shared?: boolean, due_date?: string, workflow_template_id: string }
- `POST https://api.mcp.ai/api/process_street/find/data/set/rows` — Retrieves records from a Process Street data set with optional filtering by column values. Use this tool to search for specific records within a data set or to paginate through all records. Data sets 
  - body: { page?: integer, limit?: integer, query?: string, data_set_id: string }
- `POST https://api.mcp.ai/api/process_street/list/workflows` — This tool retrieves a list of all workflows available in the Process Street account. It is a fundamental action that allows users to view and access all their workflows, which is essential for other o
  - body: { page?: integer, limit?: integer }
- `POST https://api.mcp.ai/api/process_street/undelete/workflow/run` — Restores a previously deleted workflow run in Process Street. Uses the POST /workflow-runs/{workflowRunId}/undelete endpoint to recover a workflow run within the valid recovery period (typically up to
  - body: { workflow_run_id: string }

## Example prompts
- "What can I do in Process Street?"
- "Show me a summary of my Process Street account"

## More
- Page: https://mcp.ai/process_street
- Agent spec (llms.txt): https://mcp.ai/process_street/llms.txt
- Postman collection: https://mcp.ai/process_street/postman.json
