Skip to main content
PromptLayer provides a few ways to bring PromptLayer context and workspace access into AI coding tools and MCP-compatible clients. Use the skill when you want your coding agent to understand PromptLayer concepts and best practices. Use the MCP servers when you want an agent to search documentation or work with PromptLayer resources directly.

What is available

ToolUse it for
PromptLayer skillGives AI coding tools PromptLayer product context, SDK patterns, prompt management guidance, evaluation workflows, and observability best practices.
PromptLayer Docs MCPLets agents search and read PromptLayer documentation.
PromptLayer MCPLets MCP-compatible clients interact with PromptLayer workspace resources such as prompts, request logs, datasets, evaluations, workflows, tools, and skill collections.

Install and connect

Using a coding agent?Copy the following prompt to add the PromptLayer skill and MCP servers for better results when working with PromptLayer.

Install the PromptLayer skill and MCP servers.

Open in Cursor
Alternatively, you can install them manually using the information below. Install the PromptLayer skill:
npx skills add https://docs.promptlayer.com
Add the PromptLayer Docs MCP server:
https://docs.promptlayer.com/mcp
Add the PromptLayer MCP server:
https://mcp.promptlayer.com/mcp

PromptLayer MCP

Use the PromptLayer MCP server when you want an MCP-compatible client to work with PromptLayer workspace resources such as prompts, request logs, datasets, evaluations, workflows, tools, and skill collections.

Authorization header

When you connect to the hosted MCP server, pass your PromptLayer API key in the Authorization header:
Authorization: Bearer pl_your_key_here

Available tools

The PromptLayer MCP server exposes 61 tools covering all major PromptLayer features:
CategoryTools
Prompt Templatesget-prompt-template, get-prompt-template-raw, list-prompt-templates, publish-prompt-template, patch-prompt-template-version, list-prompt-template-labels, create-prompt-label, move-prompt-label, delete-prompt-label, get-snippet-usage
Request Logsget-request, search-request-logs, get-trace, get-request-search-suggestions, get-request-analytics, get-request-analytics-custom-analytics
Trackinglog-request, create-spans-bulk
Datasets Deprecatedlist-datasets, get-dataset-rows, create-dataset-group, create-dataset-version-from-file, create-dataset-version-from-filter-params, create-draft-dataset-version, add-request-log-to-dataset, save-draft-dataset-version
Evaluations / Reports Deprecatedlist-evaluations, get-evaluation-rows, create-report, run-report, get-report, get-report-score, add-report-column, edit-report-column, delete-report-column, update-report-score-card, rename-report, delete-report, delete-reports-by-name
Agentslist-workflows, get-workflow, get-workflow-labels, create-workflow, patch-workflow, run-workflow, get-workflow-version-execution-results
Tool Registrylist-tool-registries, get-tool-registry, create-tool-registry, create-tool-version
Skill Collectionslist-skill-collections, create-skill-collection, get-skill-collection, update-skill-collection, save-skill-collection-version
Folderscreate-folder, edit-folder, get-folder-entities, move-folder-entities, delete-folder-entities, resolve-folder-id

Tables

When you automate Tables through the REST API or PromptLayer MCP server, read Agent and Programmatic Usage first. Table creates through MCP are hard to undo, computed column recalculation incurs provider costs, and your workspace must have provider API keys configured before queueing large runs. The PromptLayer MCP server does not yet expose Table create, update, or delete tools. For cross-workspace Table migration, use the Tables REST API in a script and use MCP for dependency lookup. See Copying and Migrating Tables for the full prod-to-local and cross-workspace workflow.

Local server

Install the server from npm: @promptlayer/mcp-server For clients that support stdio transport, such as Claude Desktop and Cursor, you can run the server locally via npx:
{
  "mcpServers": {
    "promptlayer": {
      "command": "npx",
      "args": ["-y", "@promptlayer/mcp-server"],
      "env": {
        "PROMPTLAYER_API_KEY": "pl_your_key_here"
      }
    }
  }
}

Next steps

Agent and Programmatic Usage

Review irreversibility, compute cost, and provider key requirements before automating Tables.

Copying and Migrating Tables

Migrate Tables across workspaces with ID remapping and API workflows.

PromptLayer MCP source

Review the open-source MCP server implementation.