Contextual menu
Every page in these docs has a contextual menu (look for the icons in the page header) that lets you:- Copy as markdown — grab the page content for use in prompts or notes
- Open in ChatGPT, Claude, or Perplexity — send the current page directly to an AI assistant with one click
- Install MCP server — connect your docs-aware AI tools to the Stora API docs
Documentation MCP server
The Stora docs include a hosted Model Context Protocol (MCP) server. When connected, your AI tools can search the content of these docs directly instead of relying on training data or web search. This is a documentation search tool — it doesn’t connect to the Stora API or your account data. The MCP server URL is:- Claude Code
- Cursor
- VS Code
OpenAPI specification
The full OpenAPI 3.1 specification is available in JSON format at:llms.txt
These docs automatically generate and maintainllms.txt and llms-full.txt files at the documentation root. These are an industry standard that helps AI systems efficiently index and understand documentation — similar to how a sitemap helps search engines.
Tips for AI integration
These tips apply whether you’re using the MCP server, feeding the OpenAPI spec to an agent, or working with an AI assistant that has access to these docs.
- Start with read-only scopes. When experimenting, limit the access token to
readscopes to prevent unintended modifications. - Use idempotency keys for writes. When the agent creates or updates resources, include an
Idempotency-Keyheader to avoid duplicate operations on retries. - Respect rate limits. AI agents can generate bursts of requests. Implement backoff when receiving
429responses.