Wayfound’s MCP server allows business users to govern, supervise, and improve AI Agents.
4 Tools
Version 4.43 or later needs to be installed to add the server automatically
Use cases
About
The Wayfound MCP remote server is a specialized Model Context Protocol server that provides AI agents with access to organizational data and tools. It enables agents to:
MCP (Model Context Protocol) is an open standard that allows AI applications to connect to external data sources and tools in a secure, standardized way. Think of it as a universal connector that lets your AI agents interact with real-world services and data.
The Wayfound MCP server provides the following tools for interacting with your organization's agents:
list_agents
Description: Get the list of all Agents in your Wayfound organization.
Usage: Ask questions like "What agents are in my organization?" or "List all available agents"
Returns: A comprehensive list of all agents configured in your Wayfound organization, including their names and basic information.
get_agent_details
Description: Get the details of a specific Agent in your Wayfound organization.
Usage: Ask questions like "Tell me about the Customer Support agent" or "What are the details for agent X?"
Returns: Detailed information about a specific agent including:
get_manager_analysis_for_agent
Description: Get Wayfound Manager analysis for a specific Agent. This includes top topics, potential issues, tool call data, knowledge gaps, user ratings, sentiment, and guideline issues.
Usage: Ask questions like "What's the performance analysis for my Sales agent?" or "Show me the manager analysis for agent X"
Returns: Comprehensive performance analysis including:
get_improvement_suggestions_for_agent
Description: Get improvement suggestions for a specific Agent. This includes suggested system prompt updates and additional knowledge needed.
Usage: Ask questions like "How can I improve my Customer Service agent?" or "What suggestions do you have for agent X?"
Returns: Actionable improvement recommendations including:
Here are some example questions you can ask your agent:
# Basic agent information
"What are all the agents in my organization?"
"Give me details about the Customer Support agent"
# Performance analysis
"Show me the manager analysis for my Sales agent"
"What are the top topics and issues for the Marketing agent?"
# Improvement recommendations
"How can I improve my Customer Service agent's performance?"
"What knowledge gaps exist for the Technical Support agent?"
# Combined queries
"List all agents and show me which ones have the most issues"
"Compare the performance of my Sales and Marketing agents"
wayfound-mcp-example/
├── main.py # Main example script
├── .env # Environment variables (create this file based on .env.example)
├── README.md # This file
└── requirements.txt # Python dependencies
git clone https://github.com/Wayfound-AI/wayfound-mcp-example
cd wayfound-mcp-example
Make sure you have Python 3.10+ installed, then install the required packages:
pip install -r requirements.txt
Create a .env
file in the project root with the following configuration:
# Wayfound MCP Server Configuration
WAYFOUND_MCP_API_KEY=your_mcp_api_key_here
# OpenAI Configuration (required for the Agents SDK)
OPENAI_API_KEY=your_openai_api_key_here
Important:
your_api_key_here
with your actual Wayfound MCP API keyyour_openai_api_key_here
with your OpenAI API key.env
file secure and never commit it to version controlRun the main example script:
python main.py
The script will:
View trace: https://platform.openai.com/traces/trace?trace_id=<trace_id>
Running: What are all the agents in my organization?
[Agent response with list of organizational agents]
You can modify main.py
to:
Enable debug logging to see more detailed information:
import logging
logging.basicConfig(level=logging.DEBUG)
Manual installation
You can install the MCP server using:
Installation for