Zoho Creator MCP server

Integrates with the Zoho Creator API to provide forms and reports capabilities.
Back to servers
Provider
Mastercode
Release date
Dec 11, 2024
Language
Python
Stats
1 star

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.

Installation

Using with Claude Desktop

To install and configure the scaflog-zoho-mcp-server with Claude Desktop, you need to update the Claude Desktop configuration file:

On MacOS:

The configuration file is located at:

~/Library/Application\ Support/Claude/claude_desktop_config.json

On Windows:

The configuration file is located at:

%APPDATA%/Claude/claude_desktop_config.json

Configuration Options

You can use one of the following configurations depending on your setup:

Using Published Package

Add this to your Claude Desktop configuration file:

"mcpServers": {
  "scaflog-zoho-mcp-server": {
    "command": "uvx",
    "args": [
      "scaflog-zoho-mcp-server"
    ]
  }
}

Using Development Version

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.

Usage

Working with Notes

The server implements a note storage system with the following capabilities:

Accessing Notes

  • Notes use a custom note:// URI scheme
  • Each note has a name, description, and text/plain MIME type

Adding Notes

You can add new notes using the provided tool:

  • add-note: Creates a new note on the server
    • Required arguments:
      • name: The name of the note
      • content: The content of the note

Example usage in Claude Desktop:

/tool add-note name="Meeting Notes" content="Discussion about new features"

Generating Summaries

You can generate summaries of all stored notes using the provided prompt:

  • summarize-notes: Creates summaries of all notes stored on the server
    • Optional arguments:
      • style: Controls the level of detail in the summary (accepts "brief" or "detailed")

Example usage in Claude Desktop:

/prompt summarize-notes style="brief"

Debugging

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.

How to add this MCP server to Cursor

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.

Adding an MCP server to Cursor globally

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"
            ]
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later