Overview
mcp-atendeai is a server MCP designed for the atendeAi project, which focuses on providing AI-driven assistance.
To use mcp-atendeai, set up the server environment as per the documentation provided in the GitHub repository and integrate it with your AI applications.
- Server management for AI applications - Integration capabilities with various AI tools - Support for real-time data processing
- Hosting AI models for real-time assistance
- Managing data flow between AI applications
- Supporting AI-driven customer service solutions
Add to your AI client
Use these steps to connect mcp-atendeai in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-atendeai-viniciusameric": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atendeai-viniciusameric"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-atendeai-viniciusameric": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atendeai-viniciusameric"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-atendeai-viniciusameric": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atendeai-viniciusameric"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-atendeai-viniciusameric": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atendeai-viniciusameric"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-atendeai-viniciusameric": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atendeai-viniciusameric"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-atendeai-viniciusameric": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atendeai-viniciusameric"
]
}
}
}