Model Context Protocol server for AI client integration with ClosedLoop AI feedback analysis platform.
The ClosedLoop AI MCP Server provides AI clients with access to feedback data and insights through the Model Context Protocol. This server enables AI assistants to interact with your ClosedLoop AI data seamlessly.
The Model Context Protocol (MCP) is a standard for AI clients to connect to data sources and tools. It allows AI assistants to access your ClosedLoop AI feedback data, analyze insights, and provide intelligent responses.
Sign up for a free account and generate your API key from the dashboard.
Your AI client can now access feedback data and provide intelligent insights.
All MCP requests require authentication using a Bearer token. Include your API key in the Authorization header.
Keep your API key secure and never share it publicly. Rotate keys regularly for enhanced security.
The ClosedLoop AI MCP Server provides several tools for AI clients to interact with your feedback data and chat functionality.
Access and analyze customer feedback data with AI-powered insights.
Manage conversations and process messages with AI analysis.
Tools for accessing and analyzing customer feedback data.
{
"date_from": "2024-01-01", // Optional: Start date (YYYY-MM-DD)
"date_to": "2024-12-31", // Optional: End date (YYYY-MM-DD)
"page": 1, // Optional: Page number (default: 1)
"limit": 20 // Optional: Items per page (default: 20, max: 100)
}
{
"feedback_id": "uuid-string" // Required: UUID of the feedback item
}
Tools for managing conversations and processing messages with AI analysis.
{
"limit": 3 // Optional: Number of conversations (default: 3, max: 50)
}
{
"title": "Conversation Title" // Required: Conversation title
}
{
"conversation_id": "uuid-string", // Required: UUID of the conversation
"content": "Message content" // Required: Message content
}
{
"conversation_id": "uuid-string", // Required: UUID of the conversation
"limit": 50 // Optional: Number of messages (default: 50, max: 100)
}
The ClosedLoop AI MCP Server supports both HTTP and Stdio transport methods for MCP clients.