Port IO
Created 5 months ago
Port MCP Server enables advanced automations and natural language interactions for developers and AI applications.
development
location
documentation
public
automation
AI
What is Port IO?
Access and manage your software catalog to improve service quality and compliance.
Documentation
Installation# 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:
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 venv - Activate the Virtual Environment
# On Linux/macOS: source venv/bin/activate # On Windows: venv\Scripts\activate - Install the UV Package Manager
# Using Homebrew (macOS/Linux): brew install uv # Or using pip: pip install uv - Verify UV Installation
which uv - Set 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 DEBUG - Verify 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:
docker pull ghcr.io/port-labs/port-mcp-server:latest
Server Config
{
"mcpServers": {
"port-io-server": {
"command": "npx",
"args": [
"port-io"
]
}
}
}
Links & Status
Project Info
Hosted
Featured
Created At:
Jul 02, 2025
Updated At:
Aug 07, 2025
Author:
Port Labs
Category:
official
License:
MIT License
Tags:
development
location
documentation