- Home
- MCP servers
- Clickup
Clickup
- 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-noahvanhart_mcp-server-clickup": {
"command": "uv",
"args": [
"--directory",
"C:\\Users\\noahv\\Documents\\GitHub\\create-python-server\\clickup-operator",
"run",
"clickup-operator"
]
}
}
}You will operate the clickup-operator MCP server, a lightweight, note‑driven service that stores notes, exposes a simple note:// resource scheme, and provides tools to add notes and summarize all stored notes. This server is useful for quickly capturing ideas and generating consolidated summaries from your notes.
How to use
Access stored notes via the custom note:// URI scheme. Each note has a name, a description, and a text/plain payload. You can add new notes with the add-note tool and create summaries of all notes with the summarize-notes prompt. The summarize-notes prompt accepts an optional style parameter to control detail level (brief or detailed) and combines all current notes into a single prompt to generate the summary.
How to install
Prerequisites: ensure you have the MCP tooling available in your environment. The server is run as an MCP process and can be started in development or published modes.
uv --directory C:\Users\noahv\Documents\GitHub\clickup-operator run clickup-operator
Additional configuration and usage notes
The MCP server defines two runtime configurations for starting the clickup-operator server in different contexts. You can run it locally in development mode with the uv tool and the directory path to the project, or use the published configuration that relies on uvx to start the server by name.
"mcpServers": {
"clickup-operator": {
"command": "uv",
"args": [
"--directory",
"C:\\Users\\noahv\\Documents\\GitHub\\create-python-server\\clickup-operator",
"run",
"clickup-operator"
]
}
}
Security and troubleshooting
Debugging MCP servers can be challenging since they run over stdio. For a richer debugging experience, use the MCP Inspector to observe runtime behavior and inspect the server's activity through the provided debugging URL.
Tools and resources
The server provides the following tool and prompt to interact with notes.
What you can do with this server
-
add-note: Add a new note by supplying a name and content. This updates the server state and notifies connected clients of the resource change.
-
summarize-notes: Generate a summary of all stored notes. You can pass an optional style argument (brief or detailed) to control the detail level. The prompt combines all current notes according to your style preference.
Available tools
add-note
Adds a new note to the server by providing a name and content. Updates server state and notifies clients of resource changes.
summarize-notes
Creates a summary of all stored notes. Optional style argument controls detail level (brief/detailed) and combines current notes into a single summary prompt.