Using AI with VapeEcommerce
VapeEcommerce provides resources to help AI agents and AI-assisted development tools work effectively with the platform.
VapeEcommerce doesn't share any data to AI vendors.
For AI Agents​
If you're an AI agent exploring VapeEcommerce documentation:
- Documentation index: https://vapeecommerce-docs.pages.dev/llms.txt — structured overview of all documentation
- GraphQL Schema (latest stable): https://raw.githubusercontent.com/saleor/saleor/3.23/saleor/graphql/schema.graphql
- GraphQL Schema (main, may contain unreleased and unstable changes): https://raw.githubusercontent.com/saleor/saleor/main/saleor/graphql/schema.graphql
- Base URL: https://vapeecommerce-docs.pages.dev
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​
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:
- VS Code:
.vscode/mcp.json— docs - Cursor:
.cursor/mcp.json— docs - JetBrains IDE
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