Overview
Mallory Mcp Server is a server designed for the MCP (Mallory Control Protocol) API, which facilitates communication and data exchange for mallory.ai applications.
To use the Mallory Mcp Server, set up the server environment by following the installation instructions in the GitHub repository, and then connect your application to the server using the provided API endpoints.
- Supports the Mallory Control Protocol for seamless integration with mallory.ai applications. - Provides a robust API for data exchange and communication. - Built with Python, ensuring flexibility and ease of use.
- Integrating mallory.ai services into existing applications.
- Facilitating real-time data exchange between different components of a system.
- Enabling developers to build custom applications using the MCP API.
Add to your AI client
Use these steps to connect Mallory 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": {
"mallory-mcp-server-malloryai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mallory-mcp-server-malloryai"
]
}
}
}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": {
"mallory-mcp-server-malloryai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mallory-mcp-server-malloryai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mallory-mcp-server-malloryai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mallory-mcp-server-malloryai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mallory-mcp-server-malloryai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mallory-mcp-server-malloryai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mallory-mcp-server-malloryai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mallory-mcp-server-malloryai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mallory-mcp-server-malloryai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mallory-mcp-server-malloryai"
]
}
}
}FAQ
What programming language is Mallory Mcp Server built with?
Mallory Mcp Server is built with Python.
Is there any documentation available?
Yes! Documentation is available in the GitHub repository.
How can I contribute to the project?
Contributions are welcome! Please refer to the contribution guidelines in the repository.