Zoho Creator

by mastercode-io

1 stars
188 downloads
Not rated
GitHub

About

Integrates with the Zoho Creator API to provide forms and reports capabilities.

Details

Author
mastercode-io
Repository
mastercode-io/scaflog-zoho-mcp-server
GitHub stars
1
Downloads
188
Categories
AI, Developer Tools, File Management, API, Knowledge Base, Infrastructure, Other
Tags
#mobile

- Custom note:// URI scheme for accessing individual notes
- Each note resource has name, description, and text/plain mimetype
- summarize-notes prompt with optional brief/detailed style argument
- add-note tool with required "name" and "content" string arguments
- Automatic notification of resource changes to clients

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Zoho Creator
    Command (node, npx, python, etc.) uv
    Arguments
    • Argument 1 --directory
    • Argument 2 /Users/alexsherin/Documents/Projects/MCP Servers
    • Argument 3 run
    • Argument 4 scaflog-zoho-mcp-server

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure the server in the Claude Desktop configuration file (claude_desktop_config.json) using either a local development setup with uv or a published package with uvx. Refer to the Quickstart section for example configurations.

add-note

Adds a new note to the server. Takes 'name' and 'content' as required string arguments. Updates server state and notifies clients of resource changes.

summarize-notes

Creates summaries of all stored notes. Optional 'style' argument to control detail level (brief/detailed). Generates prompt combining all current notes with style preference.

The server implements one tool:
- add-note: Adds a new note to the server
- Takes "name" and "content" as required string arguments
- Updates server state and notifies clients of resource changes

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "zoho creator": {
            "cwd": null,
            "env": {},
            "args": [
                "--directory",
                "/Users/alexsherin/Documents/Projects/MCP Servers",
                "run",
                "scaflog-zoho-mcp-server"
            ],
            "shell": false,
            "command": "uv"
        }
    }
}

Linux

{
    "cwd": null,
    "env": [],
    "args": [
        "scaflog-zoho-mcp-server"
    ],
    "shell": false,
    "command": "uvx"
}

Macos

{
    "cwd": null,
    "env": [],
    "args": [
        "--directory",
        "/Users/alexsherin/Documents/Projects/MCP Servers",
        "run",
        "scaflog-zoho-mcp-server"
    ],
    "shell": false,
    "command": "uv"
}

Windows

{
    "cwd": null,
    "env": [],
    "args": [
        "scaflog-zoho-mcp-server"
    ],
    "shell": false,
    "command": "uvx"
}

scaflog-zoho-mcp-server MCP server

Zoho Creator Scaflog App MCP Server

Components

Resources

The server implements a simple note storage system with:
- Custom note:// URI scheme for accessing individual notes
- Each note resource has a name, description and text/plain mimetype

Prompts

The server provides a single prompt:
- summarize-notes: Creates summaries of all stored notes
- Optional "style" argument to control detail level (brief/detailed)
- Generates prompt combining all current notes with style preference

Tools

The server implements one tool:
- add-note: Adds a new note to the server
- Takes "name" and "content" as required string arguments
- Updates server state and notifies clients of resource changes

Configuration

[TODO: Add configuration details specific to your implementation]

Quickstart

Install

Claude Desktop

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json

<details>
<summary>Development/Unpublished Servers Configuration</summary>

  "mcpServers": {
"scaflog-zoho-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/Users/alexsherin/Documents/Projects/MCP Servers",
"run",
"scaflog-zoho-mcp-server"
]
}
}

</details>

<details>
<summary>Published Servers Configuration</summary>

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

</details>

Development

Building and Publishing

To prepare the package for distribution:

1. Sync dependencies and update lockfile:

uv sync

2. Build package distributions:

uv build

This will create source and wheel distributions in the dist/ directory.

3. Publish to PyPI:

uv publish

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.