Port MCP Server
The Port IO MCP server is a Model Context Protocol (MCP) server, enabling advanced automations and natual language interactions for developers and AI applications.
What You Can Do With Port MCP
Find Information Quickly
Get entity details - "Who is the owner of service X?"
Check on-call status - "Who is on call right now?"
Get catalog insights - "How many services do we have in production?"
Analyze Scorecards
Identify weak points - "Which services are failing for the gold level and why?"
Get compliance status - "Show me all services that don't meet our security requirements"
Improve quality - "What do I need to fix to reach the next scorecard level?"
Create Resources
Build scorecards - "Create a new scorecard called 'Security Posture' with levels Basic, Silver, and Gold"
Define rules - "Add a rule that requires services to have a team owner to reach the Silver level"
Setup quality gates - "Create a rule that checks if services have proper documentation"
Manage Permissions & RBAC
Fetch action permissions - "What are the current permission settings for this action?"
Update action policies - "Configure approval workflows for the deployment action"
Configure dynamic permissions - "Set up team-based access control for this action"
We're continuously expanding Port MCP's capabilities. Have a suggestion? We'd love to hear your feedback on our roadmap!
Installation
Related MCP server: MCP Server
Prerequisites
Before you begin, you'll need:
Create a Port Account (if you don't have one):
Visit Port.io
Sign up for an account
Obtain Port Credentials:
Navigate to your Port dashboard
Go to Settings > Credentials
Save both the Client ID and Client Secret
Installation Requirements:
You will also need to provide your Port region, which is either EU or US. If not provided, the default is EU.
Installation methods
Port MCP Server can be installed using two methods:
Package Installation (uvx)
Use our official Port MCP server package with uvx for easy installation and management.
Step-by-Step Installation Guide
Create a Python Virtual Environment (Recommended)
python -m venv venvActivate the Virtual Environment
# On Linux/macOS: source venv/bin/activate # On Windows: venv\Scripts\activateInstall the UV Package Manager
# Using Homebrew (macOS/Linux): brew install uv # Or using pip: pip install uvVerify UV Installation
which uvSet Required Environment Variables
export PORT_CLIENT_ID="your_port_client_id" export PORT_CLIENT_SECRET="your_port_client_secret" export PORT_REGION="EU" # or "US"Set Python Path (if using virtual environment)
export PYTHONPATH="/path/to/your/venv/bin/python"Run the MCP Server
uvx mcp-server-port --client-id your_port_client_id --client-secret your_port_client_secret --region EU --log-level DEBUGVerify Server is Running You should start seeing logs from the server. You can also check the log file:
cat /tmp/port-mcp.log
Docker Installation
Use our official Docker image:
See below for detailed instructions on each MCP client.
Additional configurations
You can pass these additional arguments for more advanced configuration:
Configuration Parameter | UVX Flag | Docker Environment Variable | Description | Default Value |
Log Level |
|
| Controls the level of log output |
|
API Validation |
|
| Controls if API schema should be validated and fail if it's not valid |
|
Usage with Claude Desktop
Go to Settings > Developer and click on "Edit config".
Edit the
claude_desktop_config.jsonfile and add the below configuration based on the installation method.Save the file and restart Claude.
In a new chat, check the Tools section and you'll see Port available tools.

Docker
Consider using the full path to Docker (e.g.,/usr/local/bin/docker) instead of just docker. You can find this path by running which docker in your terminal. Using the full path helps avoid PATH resolution issues and ensures consistent behavior across different shell environments.
uvx
If you want to run the command from a virtual Python environment, add aPYTHONPATH variable to the env object with its path, e.g., /path/to/your/venv/bin/python.
Usage with Cursor
Go to Cursor > Settings > Cursor Settings.
Click on the MCP tab, and "Add new global MCP server".
Edit the
mcp.jsonfile and add the below configuration based on the installation method.Save the file and return to Cursor Settings.
You will see the new Port server and its available tools.

Docker
Consider using the full path to Docker (e.g.,/usr/local/bin/docker) instead of just docker. You can find this path by running which docker in your terminal. Using the full path helps avoid PATH resolution issues and ensures consistent behavior across different shell environments.
uvx
If you want to run the command from a virtual Python environment, add aPYTHONPATH variable to the env object with its path, e.g., /path/to/your/venv/bin/python.
Usage with VS Code
VS Code can automatically discover MCP servers already installed in Cursor and Claude.
For quick installation, use the one-click install buttons and select where to add the MCP configuration. Make sure to replace the placeholders with your Port credentials.
Docker quick installation uvx quick installation
For manual installation follow these steps:
Go to the Command Palette by pressing
Cmd + Shift + P/Ctrl + Shift + P.Type
Preferences: Open User Settings (JSON)and press enter.Edit the
settings.jsonfile and add the below configuration under themcp>servers.Use Copilot in Agent mode, make sure the server is running and see its available Port tools.

Docker
Consider using the full path to Docker (e.g.,/usr/local/bin/docker) instead of just docker. You can find this path by running which docker in your terminal. Using the full path helps avoid PATH resolution issues and ensures consistent behavior across different shell environments.
uvx
If you want to run the command from a virtual Python environment, add aPYTHONPATH variable to the env object with its path, e.g., /path/to/your/venv/bin/python.
Usage with Neovim (mcphub.nvim)
To use Port MCP Server in Neovim, use the plugin mcphub.nvim with one of the supported LLM extensions, such as Avante or CodeCompanion.
Once installed, add Port's MCP server configuration:
Access the servers config with the command
:MCPHuband navigate to the Config tab, or open the servers config file directly, usually located at~/.config/mcphub/servers.json.Add the configuration for Port MCP Server under the
mcpServerssection (see below).Save the configuration file.
Make sure you have the environment variables
PORT_CLIENT_IDandPORT_CLIENT_SECRETset in your Neovim environment.Restart the servers by opening the MCPHub view with
:MCPHuband triggering the restart command withR.You should see the server running and accessible from the MCPHub view. To verify, use the
@mcptool in your LLM extension. For example, prompt:@mcp list my blueprints.
Check the mcphub.nvim documentation for more details on how to use it.
Docker Configuration Example for mcphub.nvim
Make sure that you have the environment variablesPORT_CLIENT_ID and PORT_CLIENT_SECRET set with your Port credentials.
uvx Configuration Example for mcphub.nvim
Make sure that you have the environment variablesPORT_CLIENT_ID and PORT_CLIENT_SECRET set with your Port credentials.
Available Tools
Blueprint Tools
get_blueprintsRetrieve a list of all blueprints from Port
Optional inputs:
detailed(boolean, default: false): Return complete schema details for each blueprint
Returns: Formatted text representation of all available blueprints
get_blueprintRetrieve information about a specific blueprint by its identifier
Required inputs:
blueprint_identifier(string): The unique identifier of the blueprint to retrieve
Optional inputs:
detailed(boolean, default: true): Return complete schema details
create_blueprintCreate a new blueprint in Port
Required inputs:
Various fields including identifier, title, properties, etc.
Returns: The created blueprint object
update_blueprintUpdate an existing blueprint
Required inputs:
identifier(string): The unique identifier of the blueprint to updateVarious fields to update
Returns: The updated blueprint object
delete_blueprintDelete a blueprint from Port
Required inputs:
blueprint_identifier(string): The unique identifier of the blueprint to delete
Returns: Success status
Entity Tools
get_entitiesRetrieve all entities for a given blueprint
Required inputs:
blueprint_identifier(string): The identifier of the blueprint to get entities for
Optional inputs:
detailed(boolean, default: false): Return complete entity details including properties
get_entityRetrieve information about a specific entity
Required inputs:
blueprint_identifier(string): The identifier of the blueprint the entity belongs toentity_identifier(string): The unique identifier of the entity to retrieve
Optional inputs:
detailed(boolean, default: true): Return complete entity details
create_entityCreate a new entity for a specific blueprint
Required inputs:
blueprint_identifier(string): The identifier of the blueprint to create the entity forentity(object): The entity data following the blueprint schema
update_entityUpdate an existing entity
Required inputs:
blueprint_identifier(string): The identifier of the blueprint the entity belongs toentity_identifier(string): The unique identifier of the entity to updateentity(object): The updated entity data
delete_entityDelete an entity
Required inputs:
blueprint_identifier(string): The identifier of the blueprint the entity belongs toentity_identifier(string): The unique identifier of the entity to delete
Optional inputs:
delete_dependents(boolean, default: false): If true, also deletes all dependencies
Scorecard Tools
get_scorecardsRetrieve all scorecards from Port
Optional inputs:
detailed(boolean, default: false): Return complete scorecard details
get_scorecardRetrieve information about a specific scorecard by its identifier
Required inputs:
scorecard_id(string): The unique identifier of the scorecard to retrieveblueprint_id(string, optional): The identifier of the blueprint the scorecard belongs to
create_scorecardCreate a new scorecard for a specific blueprint
Required inputs:
blueprint_id(string): The identifier of the blueprint to create the scorecard foridentifier(string): The unique identifier for the new scorecardtitle(string): The display title of the scorecardlevels(list): List of levels for the scorecard
Optional inputs:
rules(list): List of rules for the scorecarddescription(string): Description for the scorecard
update_scorecardUpdate an existing scorecard
Required inputs:
blueprint_identifier(string): The identifier of the blueprint the scorecard belongs toscorecard_identifier(string): The unique identifier of the scorecard to updateVarious fields to update (title, levels, rules, etc.)
Returns: The updated scorecard object
delete_scorecardDelete a scorecard from Port
Required inputs:
blueprint_identifier(string): The identifier of the blueprint the scorecard belongs toscorecard_identifier(string): The unique identifier of the scorecard to delete
Returns: Success status
AI Agents Tool
invoke_ai_agentInvoke a Port AI agent with a specific prompt
Required inputs:
prompt(string): The prompt to send to the AI agent
Returns: Invocation status and message from the AI agent
Local Development
For developing and testing new functionalities locally before publishing a new version, you can configure your MCP client (e.g., Cursor) to use your local cloned repository.
Prerequisites
Clone the repository: If you haven't already, clone the
port-mcp-serverrepository to your local machine.Set up the environment:
Navigate to the cloned repository's root directory.
Run
make install. This command should set up a virtual environment (venv) and install all necessary dependencies.Ensure the virtual environment is created (usually in a
.venvdirectory within the repository).
Configuration Example
Below is an example of how you might configure your local development server. You'll need to replace the placeholder paths with the actual paths on your system.
Important:
The
commandshould point to the Python executable within your local repository's virtual environment.The
PYTHONPATHin theenvobject should point to the root directory of your cloned repository.
After setting this up, your MCP client will use your local version of the server, allowing you to test changes from your current branch.
Feedback and Roadmap
We're continuously improving Port MCP and would love to hear from you! Please share your feedback and feature requests on our roadmap page.
Troubleshooting
If you encounter authentication errors, verify that:
Your Port credentials are correctly set in the arguments.
You have the necessary permissions.
The credentials are properly copied to your configuration.
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License.