drio
Open app

Port MCP Server

Source

Port's MVP Server

Catalog onlyCatalog onlySTDIO

Overview

Port MCP Server is a server designed to enable interaction with the Port.io API, allowing the Claude AI agent to communicate effectively with Port.io's services.

To use the Port MCP Server, you need to create a Port.io account, obtain an API key, and configure your environment to run the server with the necessary credentials.

  • Triggers the Port.io AI agent with custom prompts. - Returns agent responses along with status and required actions. - Supports integration with Claude Desktop and Cursor for seamless operation.
  1. Automating interactions with the Port.io AI agent.
  2. Facilitating API calls for various applications.
  3. Enabling developers to build custom solutions using Port.io's capabilities.

Add to your AI client

Use these steps to connect Port 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": {
    "port-mcp-server-port-experimental": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-port-mcp-server-port-experimental"
      ]
    }
  }
}

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": {
    "port-mcp-server-port-experimental": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-port-mcp-server-port-experimental"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

How do I set up the Port MCP Server?

Follow the setup instructions provided in the documentation, including creating an account and configuring your environment.

What programming language is used?

The server is built using Python.

Is there a license for this project?

Yes, the Port MCP Server is licensed under the MIT License, allowing free use and modification.