This guide explains how to configure the QVeris MCP server and skills in OpenCode at the user level.
Create or edit the global OpenCode config file:
Mac/Linux:
~/.config/opencode/opencode.json
Windows:
%USERPROFILE%\.config\opencode\opencode.json
Add the following content (replace your-api-key-here with your actual API key):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"qveris": {
"type": "local",
"command": ["npx", "-y", "@qverisai/mcp"],
"environment": {
"QVERIS_API_KEY": "your-api-key-here"
},
"enabled": true
}
}
}
If you already have an opencode.json file, merge the mcp.qveris section into your existing config.
Download the QVeris MCP/client skill from the GitHub repository:
Repository: https://github.com/QVerisAI/QVerisAI/tree/main/skills/qveris
Mac/Linux:
mkdir -p ~/.config/opencode/skill/qveris
curl -sL https://raw.githubusercontent.com/QVerisAI/QVerisAI/main/skills/qveris/SKILL.md -o ~/.config/opencode/skill/qveris/SKILL.md
Windows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.config\opencode\skill\qveris"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/QVerisAI/QVerisAI/main/skills/qveris/SKILL.md" -OutFile "$env:USERPROFILE\.config\opencode\skill\qveris\SKILL.md"
Your skills directory should look like:
~/.config/opencode/skill/
└── qveris/
└── SKILL.md
/mcp command to see connected serversskill toolOnce configured, reference QVeris in your prompts:
Write a python script that prints the current bitcoin price. use qveris
OpenCode's agent will automatically discover the QVeris skill and MCP server to find and execute the appropriate API tools.
MCP Server Not Connecting:
node --versionnpx -y @qverisai/mcpSkills Not Loading:
SKILL.md is spelled in all capsname and descriptionWindows Issues:
npx fails, try using the full path or ensure Node.js is in your PATH