I

InVision

Query InVision prototypes and comments.

·No reviews yet
Repo
Share:

About

Auto-generated

InVision is a Model Context Protocol server in the Design category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about InVision.

What is the InVision MCP?
The InVision MCP allows you to programmatically access and query InVision prototypes and their associated comments. It is designed for integration into developer workflows and tools.
How do I install the InVision MCP in Cursor?
Installation in Cursor typically involves specifying the invision slug in the client's configuration. As this MCP uses stdio transport, ensure the underlying executable is accessible in your environment's PATH.
Are credentials required to use the InVision MCP?
Yes, the InVision MCP requires an API key for authentication. You will need to obtain an API key from InVision and configure your client to use it.
What specific InVision features can I query with this MCP?
This MCP is designed to query InVision prototypes and comments. The exact capabilities exposed depend on the specific implementation of the MCP client and the InVision API.
Is there a cost associated with using the InVision MCP?
The MCP itself is open source and community-provided. The cost depends on your existing InVision subscription and any associated API usage fees from InVision.
Can I modify prototypes directly with the InVision MCP?
The InVision MCP is described as supporting queries for prototypes and comments. Direct modification capabilities would need to be confirmed by the InVision API documentation or the MCP's specific toolset.

Install InVision

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

Add this to ~/.cursor/mcp.json.

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

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.