The MCP server for Sitecore provides a set of APIs for managing Sitecore items, including GraphQL and Item Service APIs, allowing users to create, edit, delete, and query items programmatically.
From the registry: A Model Context Protocol server for Sitecore
Please install the `mcp-sitecore-server` MCP server into my current AI client (that's you).
Required prerequisites (do these first if not already done):
- **Sitecore instance** — Running Sitecore instance with GraphQL, Item Service, and PowerShell Remoting APIs
Canonical MCP server config (stdio transport):
- command: `npx`
- args: ["@antonytm/mcp-sitecore-server@latest"]
- required environment variables:
- `GRAPHQL_ENDPOINT`: Sitecore GraphQL endpoint URL (example: `https://xmcloudcm.localhost/sitecore/api/graph/`)
- `GRAPHQL_SCHEMAS`: Sitecore schemas (comma-separated) (example: `edge,master,core`)
- `GRAPHQL_API_KEY`: GraphQL API key (example: `<your-graphql-api-key>`)
- `ITEM_SERVICE_USERNAME`: Item Service username (example: `admin`)
- `ITEM_SERVICE_PASSWORD`: Item Service password (example: `<your-password>`)
- `ITEM_SERVICE_SERVER_URL`: Item Service base URL (example: `https://xmcloudcm.localhost/`)
- `POWERSHELL_USERNAME`: PowerShell username (example: `admin`)
- `POWERSHELL_PASSWORD`: PowerShell password (example: `<your-password>`)
- `POWERSHELL_SERVER_URL`: PowerShell Remoting API base URL (example: `https://xmcloudcm.localhost/`)
- optional environment variables:
- `TRANSPORT`: Transport: stdio, streamable-http, or sse (example: `stdio`)
- `GRAPHQL_HEADERS`: Additional GraphQL headers
- `ITEM_SERVICE_DOMAIN`: Item Service auth domain (example: `sitecore`)
- `POWERSHELL_DOMAIN`: PowerShell auth domain (example: `sitecore`)
- `AUTORIZATION_HEADER`: Optional authorization header value for MCP server access
Add this MCP server to my current client's config in the correct format for you. If you need secrets or credentials I haven't provided, ASK me — do not invent values or leave raw placeholders. After adding it, tell me how to verify the server is connected.Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…