npm vaiz-mcpstdioMITupdated 1mo ago
MCP (Model Context Protocol) client for Vaiz — connect Cursor/Claude to your Vaiz workspace.
What can you do with vaiz?
vaiz-mcp
MCP (Model Context Protocol) client for Vaiz — connect Cursor/Claude to your Vaiz workspace.
Installation
npm install -g vaiz-mcp
Or use directly via npx:
npx vaiz-mcp
Configuration
Environment Variables
| Variable | Required | Description |
|---|---|---|
VAIZ_API_TOKEN |
Yes | Your Vaiz API key (Bearer token) |
VAIZ_SPACE_ID |
No | Your Vaiz Space ID |
VAIZ_API_URL |
No | MCP API URL (default: https://api.vaiz.com/mcp) |
VAIZ_DEBUG |
No | Set to true for debug output to stderr |
Cursor Configuration
Create or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"vaiz": {
"command": "npx",
"args": ["vaiz-mcp@latest"],
"env": {
"VAIZ_API_TOKEN": "your-api-key",
"VAIZ_SPACE_ID": "your-space-id"
}
}
}
}
Or after global installation (npm install -g vaiz-mcp):
{
"mcpServers": {
"vaiz": {
"command": "vaiz-mcp@latest",
"env": {
"VAIZ_API_TOKEN": "your-api-key",
"VAIZ_SPACE_ID": "your-space-id"
}
}
}
}
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"vaiz": {
"command": "npx",
"args": ["vaiz-mcp@latest"],
"env": {
"VAIZ_API_TOKEN": "your-api-key",
"VAIZ_SPACE_ID": "your-space-id"
}
}
}
}
Usage
After configuration, Cursor/Claude will automatically connect to your Vaiz workspace and gain access to:
- 🔍 Search tasks, projects, users
- 📋 Task management (create, edit, comments)
- 📊 View boards and projects
- 👥 Team member information
- 📝 Work with documents and milestones
Debugging
To enable debug output, add the VAIZ_DEBUG variable:
{
"mcpServers": {
"vaiz": {
"command": "npx",
"args": ["vaiz-mcp@latest"],
"env": {
"VAIZ_API_TOKEN": "your-api-key",
"VAIZ_DEBUG": "true"
}
}
}
}
Debug messages will be output to stderr.
Programmatic Usage
You can also use the library programmatically:
import { createVaizMCPClient } from 'vaiz-mcp';
const client = createVaizMCPClient({
apiKey: 'your-api-key',
spaceId: 'your-space-id',
});
// Initialize connection
const initResult = await client.initialize();
// Get list of tools
const tools = await client.listTools();
// Call a tool
const result = await client.callTool('search', {
query: 'important task',
entityType: 'task'
});
Development
# Clone the repository
git clone https://github.com/vaiz/vaiz-mcp.git
cd vaiz-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode
npm run dev
Platforms
License
MIT
Install
Add vaiz to your client. Pick the one you use.
claude mcp add vaiz-mcp -- npx -y vaiz-mcpcodex mcp add vaiz-mcp -- npx -y vaiz-mcpamp mcp add vaiz-mcp -- npx -y vaiz-mcp{
"mcpServers": {
"vaiz-mcp": {
"command": "npx",
"args": [
"-y",
"vaiz-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"vaiz-mcp": {
"command": "npx",
"args": [
"-y",
"vaiz-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"vaiz-mcp","command":"npx","args":["-y","vaiz-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"vaiz-mcp": {
"command": "npx",
"args": [
"-y",
"vaiz-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"vaiz-mcp": {
"command": "npx",
"args": [
"-y",
"vaiz-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"vaiz-mcp": {
"command": "npx",
"args": [
"-y",
"vaiz-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"vaiz-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"vaiz-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"vaiz-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"vaiz-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y vaiz-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 28 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.2Latest | Jul 13, 2026 |