drio
Open app

Supavec MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Supavec MCP Server is an official implementation of a Model Context Protocol (MCP) server for Supavec, designed to fetch relevant content and embeddings from the Supavec platform.

To use Supavec MCP Server, you need to install the necessary dependencies, build the project, and configure it with your Supavec API key. You can run it either as a standalone application or integrate it with other projects.

  • Fetches relevant embeddings and content from Supavec. - Supports integration with Claude for Desktop. - Easy setup with clear instructions for building and running the server.
  1. Integrating Supavec content into applications.
  2. Fetching embeddings for machine learning models.
  3. Enhancing applications with relevant data from Supavec.

Add to your AI client

Use these steps to connect Supavec MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "supavec-mcp-server-taishikato": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supavec-mcp-server-taishikato"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "supavec-mcp-server-taishikato": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supavec-mcp-server-taishikato"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "supavec-mcp-server-taishikato": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supavec-mcp-server-taishikato"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "supavec-mcp-server-taishikato": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supavec-mcp-server-taishikato"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "supavec-mcp-server-taishikato": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supavec-mcp-server-taishikato"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "supavec-mcp-server-taishikato": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supavec-mcp-server-taishikato"
      ]
    }
  }
}

FAQ

How do I get my Supavec API key?

You can sign up at Supavec's website to obtain your API key.

Is there a license for Supavec MCP Server?

Yes, it is licensed under the MIT License.

What programming language is Supavec MCP Server written in?

Supavec MCP Server is written in TypeScript.