← Back to Overview
Note: Some collection editor tabs (Scripts, Runs, MCP, Settings) are only available in Advanced Mode. Enable it via Settings → Advanced Mode checkbox.

COLLECTIONS

Collection Editor

Edit collection settings, documentation, auth, scripts, run all requests, and configure MCP servers — all from a dedicated editor tab.

Collection editor Overview tab

Opening the Editor

The collection editor opens as a dedicated tab — just like request tabs — giving you full access to collection-level settings.

Click a collection name in the sidebar to open its editor tab
Click a folder name to open the folder editor tab
Multiple editors can be open simultaneously — each opens in its own tab
Breadcrumb trail shows: Collection / Parent Folder / Current Folder
Inline rename — click the name at the top of the editor to edit it directly

Overview Tab

The default tab when opening a collection editor. Provides documentation, stats, and collection-scoped variables.

Markdown Description

Write documentation for your collection in markdown. Supports full markdown syntax — headings, lists, code blocks, links, and more.

Stats

Shows the number of requests, folders, and total variables in the collection at a glance.

Variables Table

Collection-scoped key-value variables. These have the lowest priority in the resolution chain — overridden by global env, vault secrets, and local env. Each variable supports an enabled/disabled toggle.

Variable priority: collection vars < global env < vault secrets < local env. Collection variables are ideal for base URLs and default values that the team shares.

Auth Tab

Set authentication at the collection level. All 7 auth types are available — the same UI you see on individual requests.

Auth TypeDescription
BasicUsername & password (Base64 encoded)
BearerToken-based authentication
API KeyKey in header or query param
OAuth 2.0Authorization code & client credentials
AWS SigV4AWS Signature Version 4 signing
DigestRFC 7616 digest authentication
NoneNo authentication
Inheritance: Child folders and requests can inherit auth via the "Inherit from parent" toggle. The inheritance chain walks up: Collection → Folder → ... → Request. The nearest ancestor with a non-inherit auth config wins.

Scripts Tab Advanced Mode

Write JavaScript that runs before or after every request in the collection (when inherited).

Pre-Request Script

Runs before every inherited request in the collection. Use it to set dynamic headers, generate timestamps, or log debug info.

Test Script

Runs after every inherited request. Use it for common assertions, variable extraction, or logging response metadata.

Both editors provide JavaScript syntax highlighting. Scripts are concatenated in order during execution:

collection scripts → folder scripts → request scripts

A folder with inheritScripts: false contributes its own scripts but stops the chain — parent scripts above it are excluded.

Runs Tab Advanced Mode

Run all requests in the collection at once — ideal for integration testing, smoke tests, or chained workflows.

Collection Runs tab with sequential execution results

Sequential Mode

Runs requests one after another with a shared environment context. Supports chaining — extract a token from one response and use it in the next request.

Parallel Mode

Runs requests concurrently with configurable concurrency. Each request uses a separate copy of the environment (no chaining).

Progress indicator — shows execution progress during the run
Results table — method, URL, status code, response time, and pass/fail for each request
HTML report export — generate a shareable HTML report of the run results

MCP Tab Advanced Mode

Start a collection-sourced MCP (Model Context Protocol) server that exposes your collection's requests as tools for AI clients.

Configurable port — choose which port the MCP server listens on
Auto-start — server starts automatically when the extension loads
Swagger toggle — enable auto-generated OpenAPI docs for the MCP endpoint
Tool list — shows which requests are exposed as MCP tools
Per-request config — edit MCP description and input schema for individual requests
How it works: The MCP server serves JSON-RPC 2.0 on POST /mcp. AI clients (Claude Desktop, Cursor, Kiro) connect and discover your collection requests as callable tools.

Folder Editor

Click a folder name in the sidebar to open its editor. Similar to the collection editor but with fewer tabs.

TabAvailableDescription
AuthAlwaysSet folder-level auth with the same inheritance mechanics
ScriptsAdvanced ModePre-request and test scripts for the folder
SettingsAdvanced ModeCertificate configuration for mTLS
Breadcrumb shows the full path: Collection / Parent Folder / Current Folder
Same auth inheritance — folders participate in the Collection → Folder → Request chain
Same script inheritance — folder scripts are concatenated between collection and request scripts
Certificate config — select TLS certificates from the vault for mTLS (Advanced Mode)

Next

Ko-fi