How to Connect Vaiz to MCP in Claude and Cursor


MCP allows AI tools like Claude and Cursor to securely access your Vaiz workspace — tasks, projects, documents, and more — directly inside the editor or chat.

This guide walks you through connecting Vaiz to both clients using your Personal Access Token (PAT). If you don’t have it yet, check this article.

Connect Vaiz to Claude Desktop

Step 1: Open Settings in Claude

Open Claude Desktop and click Settings in the left sidebar.

0040.png

Step 2: Open the Developer Section and Edit the MCP Config

In the Settings menu, scroll down and select Developer. In the Local MCP servers section, click “Edit config”.

0041.png

This will open the claude_desktop_config.json file, where MCP servers are configured. In the opened file, add or update the Vaiz MCP configuration as shown below.

0042.png

To make this easier, you can copy the configuration below and paste it directly into your mcp.json file.

```json
{
{
  "mcpServers": {
    "Vaiz": {
      "command": "npx",
      "args": ["vaiz-mcp"],
      "env": {
        "VAIZ_API_TOKEN": "your_personal_access_token",
        "VAIZ_SPACE_ID": "your_space_id (optional)"
      }
    }
  },
  "preferences": {
    "menuBarEnabled": false,
    "quickEntryShortcut": "off"
  }
}

0043.png

Step 3: Start a New Chat to Trigger MCP Authorization

Start a new chat in Claude. Type a request that requires Vaiz data, for example: “How many tasks do I have?”.

0044.png

Step 4: Enable Claude to Perform Actions

Claude will prompt you with a permission window asking to use Vaiz tools. Select “Allow once” or “Always allow”.

0045.png

Step 5: Claude Connects and Returns Your Vaiz Data

Once authorized, Claude will fetch the requested information from your Vaiz workspace.

0046.png

Note: Claude is now connected to Vaiz via MCP.

Connect Vaiz to Cursor

Step 1: Open MCP Settings in Cursor

In Cursor, open Settings, then Tools & MCP. Scroll to Installed MCP Servers and click “Add Custom MCP”.

0047.png

Step 2: Create or Edit Your MCP Configuration File

Cursor stores MCP server configurations in the file: ~/.cursor/mcp.json.

Add the Vaiz MCP configuration:

0048.png

Use the example below to quickly add the Vaiz MCP configuration — just copy and paste it.

{
  "mcpServers": {
    "Vaiz": {
      "command": "npx",
      "args": [
        "vaiz-mcp"
      ],
      "env": {
        "VAIZ_API_TOKEN": "your_personal_access_token",
        "VAIZ_SPACE_ID": "your_space_id (optional)"
      }
    }
  }
}

0049.png

Step 3: Enable the Vaiz MCP Server

After saving the config file, return to Tools & MCP. You’ll now see Vaiz listed as an installed server — toggle it on.

0050.png

Step 4: Start a New Chat and Use Vaiz Tools

Open a new chat and send a request that relies on your Vaiz data. For example: “Let’s see how to solve task DEMO-32”.

0051.png

Cursor will call the Vaiz MCP tools and display structured task information.

Step 5: Continue Your Workflow Using Vaiz Data

Cursor can now generate follow-up tasks, code, plans, and deliverables using your workspace context.

0052.png

Note: Your Vaiz MCP integration is ready.

Conclusion

Once MCP is connected, Vaiz becomes directly accessible from tools like Claude and Cursor. You can ask questions about your tasks, get summaries, and work with real project data without leaving your AI workspace. After you set up your Personal Access Token and complete the MCP configuration, the connection works securely in the background and is ready whenever you need it.