Overview
Frontapp-MCP is a server and client application designed for the Frontapp platform, enabling users to manage their communications effectively.
To use Frontapp-MCP, clone the repository from GitHub, set up the server and client according to the provided instructions, and start managing your Frontapp communications.
- Integration with Frontapp for seamless communication management - Server-client architecture for efficient data handling - Open-source project allowing customization and contributions
- Managing team communications through Frontapp.
- Customizing the Frontapp experience for specific organizational needs.
- Contributing to the development of the Frontapp ecosystem.
Add to your AI client
Use these steps to connect Frontapp MCP Server 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": {
"frontapp-mcp-zqushair": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-frontapp-mcp-zqushair"
]
}
}
}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": {
"frontapp-mcp-zqushair": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-frontapp-mcp-zqushair"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"frontapp-mcp-zqushair": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-frontapp-mcp-zqushair"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"frontapp-mcp-zqushair": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-frontapp-mcp-zqushair"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"frontapp-mcp-zqushair": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-frontapp-mcp-zqushair"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"frontapp-mcp-zqushair": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-frontapp-mcp-zqushair"
]
}
}
}FAQ
Is Frontapp-MCP free to use?
Yes! Frontapp-MCP is an open-source project and is free to use.
Can I contribute to Frontapp-MCP?
Absolutely! Contributions are welcome, and you can find guidelines in the repository.
What technologies are used in Frontapp-MCP?
The project is built using standard web technologies suitable for server-client applications.