Access the global MultiversX documentation library to answer technical questions or verify implementation details.
You have access to a comprehensive library of MultiversX documentation, standards, and best practices stored in this repository at:
antigravity/mvx_docs
Note: Agents must resolve this path relative to the repository root (current workspace). If the agent runs outside this repo or without filesystem access, ensure the repo (including antigravity/mvx_docs) is mounted or provided in context.
Use standard file search tools to find relevant information within the documentation directory.
Use find_by_name, grep_search, or your environment’s search to locate relevant documents.
# Example: Find docs related to ESDT tokens (repo-relative)
find_by_name(SearchDirectory="antigravity/mvx_docs", Pattern="*esdt*")
# Example: Search for "async call" inside the docs
grep_search(SearchPath="antigravity/mvx_docs", Query="async call")
Once you have identified relevant files, use read_browser_url (if it was a URL) or simply view_file to read the markdown content.
view_file(AbsolutePath="antigravity/mvx_docs/sc_async_calls.md")
If the local repository docs are not available in your runtime or appear outdated, consult the official MultiversX documentation site:
Examples:
# Open a specific page
read_browser_url(URL="https://docs.multiversx.com/developers/sc-overview/")
Common direct links:
Searching the docs site: The official site uses client-side search without a URL query parameter. To search, use an external search engine with a site filter, for example:
site:docs.multiversx.com async call
site:docs.multiversx.com annotations payable
Note: Online access requires network permissions in your agent environment. Prefer local docs for reproducibility; use the official site (and site-filtered web search) when local docs are missing or stale.