home / mcp / scaflog zoho mcp server

Scaflog Zoho MCP Server

MCP Server for Scaflog Zoho Creator App

Installation
Add the following to your MCP client configuration file.

Configuration

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

You have a Zoho Creator Scaflog App MCP Server that stores notes, exposes a simple note:// scheme for accessing each note, and can summarize stored notes on demand. It also supports adding new notes and notifies clients when resources change, making it easy to build note-centric workflows with MCP clients.

How to use

You interact with the server through an MCP client. The server provides two core capabilities you will use regularly: add-note to store new notes and summarize-notes to generate summaries from all stored notes. Use summarize-notes with an optional style to control detail level (brief or detailed). The server will combine all current notes into a single prompt and return a generated summary. Notes are available via a note:// URI scheme, and each note has a name, description, and text/plain content.

Typical usage patterns: - Add a new note with a descriptive name and content, then rely on the server to update its internal state and notify clients of the change. - Request a summary of all notes with summarize-notes, choosing a level of detail with the style option if needed. - Retrieve specific notes using their note:// URIs when you need to read or reference individual items.

How to install

Prerequisites depend on how you plan to run the MCP server. You will use the provided runtime commands to start the server in either development or published mode.

Development setup start command `` uv run scaflog-zoho-mcp-server `` This runs the MCP server from the development directory you provide. Use the command block shown here if you are setting up a development environment and want to run the server locally for testing and development.

Published server start command
```
uvx scaflog-zoho-mcp-server
```
This starts the MCP server in published/production mode using the prebuilt package. Use this when you are deploying the server for access by MCP clients.

Configuration for running in development mode is shown in the following snippet. It specifies how to locate the server directory and how to start it with the MCP runtime.

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

And for a published server configuration, use this entry to start via uvx.

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

Additional content

Notes on development and debugging: - MCP servers run over stdio, so debugging can be challenging. The MCP Inspector provides a streamlined debugging experience. You can launch it with the following command to inspect the server during development. - Use the Inspector to connect to the MCP server and view live debugging information via the browser URL it provides.

Inspector launch command
```
npx @modelcontextprotocol/inspector uv --directory /Users/alexsherin/Documents/Projects/MCP Servers run scaflog-zoho-mcp-server
```
When the Inspector starts, it will present a URL you can open in your browser to begin debugging.

Available tools

add-note

Adds a new note to the server. Requires a name and content as strings; updates the server state and notifies clients of resource changes.

summarize-notes

Creates summaries of all stored notes. Accepts an optional style argument to control detail level (brief or detailed) and generates a summary by combining all current notes.