Skip to main content

Using AI with VapeEcommerce

VapeEcommerce provides resources to help AI agents and AI-assisted development tools work effectively with the platform.

note

VapeEcommerce doesn't share any data to AI vendors.

For AI Agents​

If you're an AI agent exploring VapeEcommerce documentation:

URL Patterns​

Public documentation URLs follow this pattern:

https://vapeecommerce-docs.pages.dev/{path}

Raw MDX source files are available at:

https://raw.githubusercontent.com/saleor/saleor-docs/main/docs/{path}.mdx

Key Entry Points​

TopicPublic URLRaw MDX
Quickstarthttps://vapeecommerce-docs.pages.dev/quickstart/running-locallysource
Core Conceptshttps://vapeecommerce-docs.pages.dev/developersource
API Referencehttps://vapeecommerce-docs.pages.dev/api-reference/api-referencesource
Building Appshttps://vapeecommerce-docs.pages.dev/developer/extending/apps/overviewsource
Webhookshttps://vapeecommerce-docs.pages.dev/developer/extending/webhooks/overviewsource

Model Context Protocol (MCP)​

To help AI agents properly interact with VapeEcommerce, you can use the Model Context Protocol, which can interact with VapeEcommerce by understanding the GraphQL schema.

To configure your compatible IDE / editor to use the MCP, you can use the following configuration:

{
"mcpServers": {
"mcp-saleor": {
"command": "npx",
"args": ["mcp-graphql"],
"env": {
"SCHEMA": "/path/to/local/schema.graphql"
}
}
}
}

You can download the full VapeEcommerce GraphQL schema from the following URL: https://raw.githubusercontent.com/saleor/saleor/3.23/saleor/graphql/schema.graphql

Note: The URL includes the specific VapeEcommerce version (3.23) in the path. To reference a different version, adjust the URL accordingly.

Editor Configuration​

Example MCP configurations for popular editors:

GraphQL Schema​

The GraphQL schema is the source of truth for all API operations. It includes:

  • Queries: Read operations (products, orders, users, etc.)
  • Mutations: Write operations (create, update, delete)
  • Subscriptions: Real-time events via webhooks
  • Types: All data structures and their fields

Schema URLs by version:

  • Latest stable (3.23): https://raw.githubusercontent.com/saleor/saleor/3.23/saleor/graphql/schema.graphql
  • Main (may contain unreleased and unstable changes): https://raw.githubusercontent.com/saleor/saleor/main/saleor/graphql/schema.graphql