This guide explains how to configure QVeris MCP server and skills in Claude Code at the user level.
Claude Code supports remote HTTP MCP servers. Add QVeris as a user-scoped Streamable HTTP server with Bearer authentication:
claude mcp add --transport http qveris https://mcp.qveris.ai/mcp --scope user --header "Authorization: Bearer your-api-key-here"
Restart Claude Code, run /mcp, and confirm that QVeris is connected. Use the local stdio fallback below only when remote HTTP is not available in the client environment.
You can generate the command with QVeris CLI:
qveris mcp configure --target claude-code
Or run the command manually:
Run the following command (replace your-api-key-here with your actual API key):
Mac:
claude mcp add qveris --transport stdio --scope user --env QVERIS_API_KEY=your-api-key-here -- npx -y @qverisai/mcp
Windows (Command Prompt):
claude mcp add qveris --transport stdio --scope user --env QVERIS_API_KEY=your-api-key-here -- cmd /c npx -y @qverisai/mcp
Managing MCP Servers:
claude mcp list # List all configured servers
claude mcp get qveris # Get details for a specific server
claude mcp remove qveris # Remove a server
Download the QVeris MCP/client skill from the GitHub repository:
Repository: https://github.com/QVerisAI/qveris-agent-toolkit/tree/main/skills/qveris
Mac:
mkdir -p ~/.claude/skills/qveris
curl -sL https://raw.githubusercontent.com/QVerisAI/qveris-agent-toolkit/main/skills/qveris/SKILL.md -o ~/.claude/skills/qveris/SKILL.md
Windows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.claude\skills\qveris"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/QVerisAI/qveris-agent-toolkit/main/skills/qveris/SKILL.md" -OutFile "$env:USERPROFILE\.claude\skills\qveris\SKILL.md"
Your skills directory should look like:
~/.claude/skills/
└── qveris/
└── SKILL.md
/mcp command to see connected serversclaude mcp list to verify configurationReference QVeris skills in your prompts with @.claude/skills/qveris/ (Mac/Linux) or @.claude\skills\qveris\ (Windows):
Write a python script that prints the current bitcoin price using @.claude/skills/qveris/
Local stdio MCP Server Not Connecting:
node --versionnpx -y @qverisai/mcpWindows Issues:
cmd /c wrapper for stdio servers with npxWas this page helpful?