Skip to main content

Check out Port for yourselfย 

Port AI Platform Migration Guide

Migration Required

This guide covers the migration from the legacy AI system to the new Port AI platform. All users must complete this migration by October 15, 2025 to continue using AI features.

What's Changingโ€‹

We're excited to announce a major upgrade to Port's AI capabilities that will transform how you interact with your developer portal. This migration introduces our new Port AI assistant - an intelligent, context-aware agent that understands your entire engineering ecosystem.

Key Improvementsโ€‹

๐Ÿค– Enhanced Port AI Assistant
An out-of-the-box intelligent agent with MCP (Model Context Protocol) support, providing instant insights about your services, ownership, incidents, and engineering operations with improved accuracy and performance.

๐ŸŽจ Enhanced UI Experience
A completely redesigned interface optimized for AI-powered workflows, making it easier to get answers and take actions through natural language.

๐Ÿ”„ Upgraded Architecture
Streaming responses, improved performance, and better extensibility for AI-powered operations across your engineering platform. Your existing AI agents will continue to work with updated schemas.

โœจ Using Anthropic Sonnet 4 model
Using the advanced Sonnet 4 model for better results using the Port MCP server, increased accuracy is achieved. If you wish to continue using OpenAI GPT models, contact the AI team for further instructions.

Model Performance

We observed lower accuracy with OpenAI GPT models and recommend keeping the Sonnet models (provided by our cloud infrastructure in similar measures like OpenAI models).

Migration Timeline & Phasesโ€‹

Phase 1: Transition Period (October 1-15, 2025)โ€‹

Testing Period

During this phase, you can test the new system while your existing integrations continue to work.

  • New Port AI is available with backward compatibility
  • Existing AI agents continue working
  • Time to test and migrate at your pace

Phase 2: Full Migration (October 15, 2025+)โ€‹

End of Compatibility

After October 15, backward compatibility will be removed and all integrations must use the new system.

  • Backward compatibility removed
  • All integrations must use new endpoints and schemas

Migration Guide by Interfaceโ€‹

๐Ÿ”Œ API Integrationsโ€‹

Who's affected: Customers using custom AI API integrations
What changes: Endpoint updates and required parameters

Endpoint Deprecation

The /agent/invoke endpoint (agent router) will be deprecated. You have two migration paths to choose from.

You have two migration paths:

Best for: Integrations where YOU build the logic to select which agent to route to based on context, OR if you use one general agent.

Phase 1 - Now

Update your API calls to include new parameters:

// Current
POST /agent/invoke
{
"query": "your question",
"agent_id": "agent_identifier"
}

// Update to (specific agent - you choose which one)
POST /agent/{agent_identifier}/invoke?stream=true&use_mcp=true
{
"query": "your question",
}

Phase 2 - By October 15

Continue using the same /agent/{agent_identifier}/invoke endpoint with updated blueprint schemas. The updated schemas will be sent prior to this date.

API Reference

The new API uses streaming responses for real-time results. See the API interaction documentation for complete details on request/response formats, streaming events, and error handling.

โš™๏ธ Workflow Automationsโ€‹

Who's affected: Teams using AI agents in automations
What changes: Parameter updates and endpoint migration

Phase 1 - Nowโ€‹

  • Automations are assumed to use specific agents using the /agent/{agent_identifier}/invoke endpoint
  • Add use_mcp=true and stream=true to all automation configurations
  • Test automations with new parameters

Phase 2 - By October 15โ€‹

  • Once updated by Port's team, you can remove the query parameters as they will be used by default
  • Update your blueprints schemas. The updated schemas will be sent prior to this date

๐Ÿ’ฌ Slack Integrationโ€‹

Who's affected: Teams using Port AI through Slack
What changes: Service interruption starting October 1

Service Interruption

Slack integration will stop working completely during the migration. No backward compatibility will be provided.

Timeline:

  • October 1: Slack integration stops working
  • Q1 2026: New integration planned (subject to change)

Immediate Action Required:

  • Stop using Slack integration
  • Switch to Port web UI or API integration

๐Ÿ–ฅ๏ธ AI Agent Widget (UI)โ€‹

Who's affected: Teams using AI widgets in the Port UI
What changes: None - seamless automatic migration

Easy Migration

This is the simplest migration path with minimal manual work required.

Edit your AI agent widgets to toggle on the use_mcp flag. Test to ensure it works as expected.

By October 15th, the remaining widgets will be automatically migrated to this flag, so the behavior will change to use the new MCP behind the scenes, including the usage of the Anthropic Sonnet 4 model.

Blueprint Schema Updatesโ€‹

Affected Blueprintsโ€‹

Two system blueprints require schema updates:

  • ai_invocation blueprint
  • ai_agent blueprint

Phase 1 - By October 15โ€‹

Schema Compatibility

Both old and new schemas will be supported during this period to ensure smooth transition.

  • Manually update your AI agent entities to match the new schema
  • Verify everything works correctly with the new schema
  • This must come AFTER you have completed the integrations migration

Phase 2 - October 15+โ€‹

Schema Migration

Schemas will be automatically migrated. Existing agents might break if not updated in Phase 1.

  • Schemas will be automatically migrated
  • Existing agents might break if not updated in Phase 1
  • Only new schemas are supported

Action Requiredโ€‹

  1. By October 8th: Manually update your AI agent entities to the new schema format for testing and adjustment
  2. October 8-15: Test functionality with the new schema to ensure everything works correctly
  3. October 15th+: Automatic migration will occur - agents not manually updated may break

New AI Agent Schemaโ€‹

Manual Schema Update Required

Starting October 8th, you must manually update your AI blueprints schemas to the new format for testing and adjustment.

Starting October 15th, schemas will be automatically migrated, but existing agents might break if not manually updated during the testing period.

View the new AI agent schema (Click to expand)
{
"identifier": "_ai_agent",
"title": "AI Agent",
"icon": "Details",
"ownership": {
"type": "Direct",
"title": "Owning Teams"
},
"schema": {
"properties": {
"description": {
"icon": "DefaultProperty",
"type": "string",
"title": "Description",
"description": "Brief explanation of what this agent does"
},
"status": {
"icon": "DefaultProperty",
"title": "Status",
"description": "Is the agent active (available to be run manually, or allowed to operate autonomously)",
"type": "string",
"enum": [
"active",
"inactive"
],
"enumColors": {
"active": "green",
"inactive": "red"
},
"default": "active"
},
"tools": {
"items": {
"type": "string"
},
"icon": "DefaultProperty",
"type": "array",
"title": "Tools",
"description": "An array of tools that the agent is allowed to execute. Docs: https://docs.port.io/ai-interfaces/port-ai/api-interaction#tool-selection",
"default": [
"^(list|get|search|track|describe)_.*"
]
},
"prompt": {
"icon": "DefaultProperty",
"type": "string",
"maxLength": 2500,
"title": "Prompt",
"format": "markdown",
"description": "The system prompt for the agent. Where the agent is manually invoked, a user prompt will be provided in the invocation"
},
"execution_mode": {
"title": "Execution Mode",
"type": "string",
"enum": [
"Automatic",
"Approval Required"
],
"default": "Approval Required",
"description": "The execution mode for actions - Automatic or requiring approval"
},
"conversation_starters": {
"items": {
"type": "string"
},
"icon": "Chat",
"type": "array",
"title": "Conversation Starters",
"description": "Predefined conversation starter messages to help users interact with this agent"
},
"provider": {
"type": "string",
"title": "Provider",
"description": "The provider of the agent"
},
"model": {
"type": "string",
"title": "Model",
"description": "The model of the agent"
},
"labels": {
"type": "object",
"title": "Labels",
"description": "Free labels to identify specific attributes on the agent"
}
},
"required": [
"tools",
"status",
"prompt"
]
},
"mirrorProperties": {},
"calculationProperties": {},
"aggregationProperties": {
"total_invocations": {
"title": "Total Invocations",
"type": "number",
"description": "The number of invocations for this agent",
"target": "_ai_invocations",
"calculationSpec": {
"func": "count",
"calculationBy": "entities"
}
}
},
"relations": {}
}
View the new AI Invocation schema (Click to expand)
{
"identifier": "_ai_invocations",
"description": "For each agent request a match feedback entity will be created",
"title": "AI Invocation",
"icon": "Star",
"ownership": {
"type": "Inherited",
"title": "Owning Teams",
"path": "agent"
},
"schema": {
"properties": {
"status": {
"icon": "DefaultProperty",
"title": "Status",
"type": "string",
"description": "The agent invocation status",
"enum": [
"In Progress",
"Completed",
"Failed"
],
"enumColors": {
"In Progress": "blue",
"Completed": "green",
"Failed": "red"
}
},
"asked_at": {
"type": "string",
"title": "Asked At",
"icon": "Calendar",
"description": "When the agent was invoked",
"format": "date-time"
},
"replied_at": {
"type": "string",
"title": "Replied At",
"icon": "Calendar",
"description": "When the agent replied",
"format": "date-time"
},
"prompt": {
"type": "string",
"title": "Prompt",
"description": "The prompt sent to the agent, including both the user and the agent prompt",
"format": "markdown"
},
"error": {
"type": "string",
"description": "Detailed description of an error in case of failed execution",
"title": "Error"
},
"response": {
"type": "string",
"description": "The final agent response",
"title": "Response",
"format": "markdown"
},
"execution_logs": {
"type": "string",
"description": "The reasoning and tools execution logs",
"format": "markdown",
"title": "Execution Logs"
},
"labels": {
"type": "object",
"description": "Free labels to identify specific attributes on the invocation",
"title": "Labels"
},
"quota": {
"type": "object",
"description": "The quota usage",
"title": "Quota"
},
"provider": {
"type": "string",
"title": "Provider",
"description": "The LLM provider used for the invocation"
},
"model": {
"type": "string",
"title": "Model",
"description": "The LLM model used for the invocation"
}
},
"required": [
"asked_at",
"status"
]
},
"mirrorProperties": {
"agent_title": {
"title": "agent title",
"path": "agent.$title"
}
},
"calculationProperties": {},
"aggregationProperties": {},
"relations": {
"agent": {
"title": "Agent",
"description": "The agent that was invoked",
"target": "_ai_agent",
"required": false,
"many": false
},
"asked_by": {
"title": "Asked By",
"description": "Who invoked the agent",
"target": "_user",
"required": false,
"many": false
}
}
}

Updated Quotas & Rate Limitsโ€‹

With the open beta launch, new monthly quotas and rate limits apply immediately:

Quota Changes

These limits apply immediately upon migration to ensure system stability and fair usage.

  • Monthly quotas adjusted based on your plan type
  • Hourly rate limits for system protection

If you reach these limits, reach out to us to make sure you have the right limit.

Migration Checklistโ€‹

โœ… Immediate Actionsโ€‹

  • Identify all AI agent usage points (API, Automations, Slack, UI)
  • Stop using Slack integration
  • Plan your migration plan
  • Update API calls with stream=true and use_mcp=true
  • Update automation & AI widgets parameters
  • Test integrations with new parameters
  • Migrate to the new schema

๐Ÿ“‹ By October 15 (Phase 1)โ€‹

  • Complete schema migration
  • Update to final API endpoints
  • Remove legacy configurations
  • Verify all integrations work

Support & Resourcesโ€‹

๐Ÿ“š Documentationโ€‹

For more details on specific migration topics, see:

๐Ÿ’ฌ Get Helpโ€‹

  • Contact Port's AI team through your shared Slack channel
  • Reach out to your Technical Success Manager

Frequently Asked Questionsโ€‹

What do I need to do now? (Click to expand)

Check if you're using API integrations, workflow automations, or Slack with AI agents. API and automations need updates by October 15, Slack users should switch to alternatives immediately.

Will my existing AI agents break? (Click to expand)

They'll continue working during October with backward compatibility. You must migrate to new schemas by October 15 or they might break during automatic migration.

Why are you making this change? (Click to expand)

Based on your feedback, we've upgraded our infrastructure to provide better performance, streaming responses, and MCP support while maintaining your existing AI agents with improved capabilities.

When will Slack integration be available again? (Click to expand)

We're targeting Q1 2025 for the new Slack integration, but this timeline may change.

Is this production-ready? (Click to expand)

This is an open beta release. While fully functional, it's not recommended for production-critical workflows initially.


We're committed to making this migration as smooth as possible. The new Port AI represents a significant leap forward in how platform teams can leverage AI to accelerate their engineering operations.