The scaflog-zoho-mcp-server is a Model Context Protocol server that implements a simple note storage system for Zoho Creator Scaflog App. It allows you to store notes and generate summaries using Claude AI assistant.
To install and configure the scaflog-zoho-mcp-server with Claude Desktop, you need to update the Claude Desktop configuration file:
The configuration file is located at:
~/Library/Application\ Support/Claude/claude_desktop_config.json
The configuration file is located at:
%APPDATA%/Claude/claude_desktop_config.json
You can use one of the following configurations depending on your setup:
Add this to your Claude Desktop configuration file:
"mcpServers": {
"scaflog-zoho-mcp-server": {
"command": "uvx",
"args": [
"scaflog-zoho-mcp-server"
]
}
}
If you're working with a local development version:
"mcpServers": {
"scaflog-zoho-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/Users/alexsherin/Documents/Projects/MCP Servers",
"run",
"scaflog-zoho-mcp-server"
]
}
}
Make sure to adjust the path to match your local project directory.
The server implements a note storage system with the following capabilities:
note://
URI schemeYou can add new notes using the provided tool:
name
: The name of the notecontent
: The content of the noteExample usage in Claude Desktop:
/tool add-note name="Meeting Notes" content="Discussion about new features"
You can generate summaries of all stored notes using the provided prompt:
style
: Controls the level of detail in the summary (accepts "brief" or "detailed")Example usage in Claude Desktop:
/prompt summarize-notes style="brief"
For debugging, you can use the MCP Inspector tool which provides visibility into the communication between Claude and the MCP server:
npx @modelcontextprotocol/inspector uv --directory /path/to/your/project run scaflog-zoho-mcp-server
After launching, open the provided URL in your browser to start debugging.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.