MCP.so
Sign In
Servers

scaflog-zoho-mcp-server MCP server

@mastercode-io

MCP Server for Scaflog Zoho Creator App

Overview

What is scaflog-zoho-mcp-server?

scaflog-zoho-mcp-server is a Model Context Protocol server that implements a simple note storage system. It provides resources, prompts, and tools for interacting with notes, and is designed to be used with MCP clients such as Claude Desktop.

How to use scaflog-zoho-mcp-server?

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.

Key features of scaflog-zoho-mcp-server

  • 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

Use cases of scaflog-zoho-mcp-server

  • Adding new notes with a name and content via the add-note tool
  • Summarizing all stored notes with a desired level of detail
  • Accessing individual notes through the note:// URI scheme
  • Integrating note creation and summarization into AI assistant workflows

FAQ from scaflog-zoho-mcp-server

How do I install scaflog-zoho-mcp-server?

Configure your MCP client (e.g., Claude Desktop) by adding the server to its config file. For a published server, use the command uvx scaflog-zoho-mcp-server. For local development, use uv with the directory path.

How do I develop and publish the server?

Use uv sync to sync dependencies, uv build to create distributions, and uv publish to publish to PyPI. PyPI credentials can be provided via token (--token or UV_PUBLISH_TOKEN) or username/password.

How do I debug scaflog-zoho-mcp-server?

Use the MCP Inspector by running npx @modelcontextprotocol/inspector uv --directory <path> run scaflog-zoho-mcp-server. The Inspector provides a browser URL for debugging.

What runtime dependencies does the server require?

The server is built with Python and uses uv for package management. It should be run in an environment with uv installed.

What transport does the server use?

The server communicates over stdio, as is standard for MCP servers.

More from Other