- Home
- MCP servers
- Scaflog Zoho
Scaflog Zoho
- other
0
GitHub Stars
other
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-mastercode-io_scaflog-zoho-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/Users/yourname/Documents/MCP Servers",
"run",
"scaflog-zoho-mcp-server"
]
}
}
}You run an MCP server that stores notes, exposes a simple note:// resource for each note, and provides a summary tool to generate overviews of all stored notes. You can add notes and trigger summaries from your MCP client, and the server notifies clients about resource changes as notes are added or updated.
How to use
You interact with this MCP server from an MCP client to manage notes and generate summaries. Use the add-note tool to store new notes by providing a name and content. Access the list of stored notes through the note:// resource, then ask the summarize-notes prompt to create a consolidated summary of all current notes. The server updates connected clients when resources change.
How to install
Prerequisites for running this MCP server include the MCP runtime tools referenced in the configuration snippets. You will run the server in stdio mode using the MCP runtime, either in development or in a published, ready-to-run configuration.
{
"mcpServers": {
"scaflog_zoho_mcp_dev": {
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"/Users/yourname/Documents/MCP Servers",
"run",
"scaflog-zoho-mcp-server"
]
}
}
}
{
"mcpServers": {
"scaflog_zoho_mcp_pub": {
"type": "stdio",
"command": "uvx",
"args": [
"scaflog-zoho-mcp-server"
]
}
}
}
Configuration
Configuration details for running this MCP server are not provided in this guide. Use the development or published runtime blocks above to start the server in stdio mode, and adjust the directory path to point to your local MCP Servers directory.
Notes on starting and testing
To start in development mode, run the development command block shown in the configuration snippet. For example, adjust your directory path to your actual location and run the command through the MCP runtime to start the server.
Tools you can use with this server
The server exposes two core capabilities you can invoke from your MCP client:
-
- add-note: Adds a new note to the server with a required name and content
-
- summarize-notes: Creates summaries of all stored notes with an optional style parameter to control detail level (brief or detailed)
Available tools
add-note
Adds a new note to the server by providing a name and the note content as strings. This updates the server state and notifies connected clients of the change.
summarize-notes
Generates a summary of all current notes. Accepts an optional style argument to control detail level (brief or detailed) and combines all notes into a single prompt to produce the summary.