Skip to content

MCP Tools

Guide

MCP (Model Context Protocol) is the protocol used by Prodgy to connect AI agents to external tools. Each installed integration automatically registers an MCP Tool — a structured configuration that describes:

  • Available actions — what the tool can do (e.g., create issue, send message, fetch data)
  • Accepted parameters — what information the tool needs to perform each action
  • Response formats — how results are returned

When you chat in the Playground or interact with an agent, the MCP orchestrator analyzes your message and:

  1. Identifies the intent — understands what you want to accomplish (e.g., “create a GitHub issue to fix bug X”)
  2. Selects the appropriate MCP Tool — locates the corresponding integration among available tools
  3. Executes the action — invokes the tool with the correct parameters automatically
  4. Returns the result — presents the tool’s response directly in the conversation

Chat IntentMCP Tool TriggeredAction Performed
”Create a GitHub issue”GitHubCreates issue in the configured repository
”Send a message on Slack”SlackSends message to the specified channel
”List open PRs”GitHub / GitLabQueries open pull requests
”What’s the deploy status?”Azure DevOpsQueries CI/CD pipeline
”Create a Jira task”JiraCreates task in the configured project

The MCP orchestrator is the component responsible for coordinating tool calls. It acts as an intermediary between the AI agent and installed integrations:

  • Intelligent routing — directs each request to the correct MCP Tool based on conversation context
  • Multiple tools — can trigger more than one tool in a single interaction if needed
  • Preserved context — maintains conversation history for more precise calls
  • Error handling — notifies the user if a tool is unavailable or a failure occurs

AspectIntegrationMCP Tool
What it isConfigured connection to an external toolAI invocation configuration
When createdWhen installing the integrationAutomatically, along with the integration
Who uses itWorkflows, dashboards, agentsAI agents and MCP orchestrator
ConfigurationCredentials and connection parametersAutomatic — no additional configuration needed