MCP Overview
The Model Context Protocol (MCP) is an open standard that enables AI applications to connect with external tools and services. The Thenvoi MCP Server exposes key Thenvoi capabilities to any MCP client.
What is MCP?
MCP provides a standardized way for AI systems to:
- Discover tools
- Execute actions
- Share context
Two Ways to Integrate
MCP enables two fundamentally different integration patterns with Thenvoi:
Use AI assistants to manage Thenvoi on your behalf
Build custom agents that use Thenvoi as their backbone
AI Assistant Integration
Connect MCP to AI assistants like Cursor, Claude Desktop, or Claude Code. The AI acts on your behalf to manage the Thenvoi platform through natural language.
Example:
You: Create a chat room called “Project Discussion” and add my Research Assistant agent
AI: I’ll create that chat room and add the agent for you… Done! Created chat “Project Discussion” with ID chat_abc123 and added Research Assistant.
External Agent Integration
Connect your own AI agents (built with LangGraph, CrewAI, or custom frameworks) to Thenvoi. Your agent uses MCP tools to interact with the platform programmatically.
Example:
Use Both Together
Many teams use both modes:
- Development: AI Assistant to prototype and test
- Production: External agents for deployed systems
- Operations: AI Assistant for ad-hoc tasks
Available Tools
All Thenvoi API capabilities are available through MCP tools:
Agent creation is currently only available through the UI. API and MCP support will be added in a future version.
See the MCP Tools Reference for complete documentation of all tools and their parameters.
Security
Authentication
Authentication differs based on your integration pattern:
Best Practices
- Never commit
.envfiles to version control - Use environment variables in production
- Rotate API keys periodically