CLI tool and MCP server for Vendure Admin API communication
MCPpedia last refreshed this data
This server has been archived and is no longer actively maintained.
Vex is an MCP server that CLI tool and MCP server for Vendure Admin API communication. Its tool list has not been published yet over stdio and sse, requires no API key, and scores 68/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"vex": {
"args": [
"-y",
"@spaceparrots/vex"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@spaceparrots/vex' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @spaceparrots/vex against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce / developer-tools
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
MCP server for using the GitLab API
Manage Supabase projects — databases, auth, storage, and edge functions
Chrome DevTools for coding agents
MCP Security Weekly
Get CVE alerts and security updates for Vex and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Your vendure admin-api graphql query executor. CLI tool and MCP server for the Vendure Admin GraphQL API.
Use vex from your terminal to manage products, customers, and orders — or connect it as an MCP server so Claude can do it for you.
vex runnpm install -g @spaceparrots/vex
This puts the vex command on your PATH.
Vendure 3.6+ is required. Vex uses the API key authentication method introduced in Vendure 3.6.
To set up your Vendure instance:
authOptions: {
tokenMethod: ['cookie', 'bearer', 'api-key'],
}
The key is sent via the vendure-api-key header on every request.
# Add an environment — interactive wizard prompts for missing values and validates by fetching the schema
vex env add dev
# Or non-interactive
vex env add dev --url http://localhost:3000/admin-api --api-key sk-123456
# Verify it's healthy
vex env status dev
# Build a query interactively (pick fields, fill variables, see the GraphQL document)
vex build -q customers
# Save the built query for replay
vex build -q contents --save ContentsPublished
# Replay it later, optionally overriding variables
vex run ContentsPublished --var "options={\"take\":5}"
# Fetch and cache the schema (auto-fetched on first use)
vex schema fetch
vex mcp install # writes ./.mcp.json (lean tools + VEX_ENV) and links the repo to the env
Prefer reviewing first? vex mcp config prints the snippet without writing.
vex env add <name> [--url <url>] [--api-key <key>] # Interactive when --url or --api-key is missing.
[--schema-type endpoint|file] # Validates by fetching the schema (or reading the SDL file).
[--schema-value <value>]
[--no-validate]
vex env list # List all environments
vex env switch <name> # Switch active environment
vex env set <name> [--url <url>] [--api-key <key>] # Update environment fields
vex env remove <name> # Remove environment
vex env show <name> # Show environment details (API key masked)
vex env status <name> [--json] # Check endpoint reachability + schema accessibility
vex resolves the environment for each operation in th