This server has been archived and is no longer actively maintained.
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
Read, write, and manage files on the local filesystem
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
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 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 this order:
env parameter on any MCP tool, or --env <name> on any CLI command.VEX_ENV environment variable — handy as a per-project default.