The Sidvy MCP Server provides AI tools with comprehensive access to a note-taking system, enabling full CRUD operations and management of notes, todos, groups, workspaces, and calendar notes through secure API integration.
Notes Management: Create, read, update, append, delete, search, and filter markdown notes; list and sort by various criteria; manage deleted/trashed notes and view recent activity.
Hierarchical Organization (Groups): Create nested group structures with automatic path creation (e.g., "Projects/Web Dev/Frontend"); move, rename, and delete groups with cascade deletion; retrieve group trees, root groups, child groups, and full paths.
Todos Management: Create, update, delete, toggle, and track todos with markdown checkbox synchronization and line number tracking; filter by completion status, note, or workspace; search todos by content; get statistics and view pending/completed todos separately; bulk create multiple todos.
Workspace Management: Create up to 2 workspaces per user for content isolation; switch between workspaces; rename and delete with safety confirmations; get workspace statistics (note counts, group counts, todo metrics); find workspaces by name or get default workspace; check creation eligibility.
Calendar Integration: Access, update, and append to daily and weekly notes for specific dates with automatic calendar-based note management.
Advanced Features: Full-text search across notes with workspace filtering; flexible filtering and sorting on all operations; API key-based JWT authentication; real-time synchronization with the Sidvy platform; workspace-aware operations with automatic default workspace handling.
Integration: Works seamlessly with MCP-compatible AI tools like Claude Desktop, OpenAI ChatGPT, and others.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sidvy MCP Serversearch for notes about project planning and show me the recent ones"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sidvy MCP Server
A comprehensive MCP (Model Context Protocol) server that provides AI tools with full access to the Sidvy API - a powerful note-taking system with workspaces, groups, todos, and real-time synchronization.
Features
Full CRUD Operations: Complete access to notes, groups, todos, and workspaces
Authentication: API key-based authentication for secure access
Workspace Management: Multi-workspace support with user isolation
Hierarchical Groups: Organize notes in nested group structures
Smart Todos: Todo tracking with markdown checkbox synchronization
Search & Filter: Full-text search across notes and advanced filtering
Simple Setup: Direct Node.js execution, no complex packaging
Easy Integration: Works with Claude Desktop, OpenAI ChatGPT, and other MCP-compatible AI tools
Quick Start
1. Get Your API Token
Go to Sidvy
Sign up or log in to your account
Generate an API token from your account settings
Copy the JWT token
2. Install and Build
3. Set Up Environment
Create a .env file or set environment variables:
4. Configure Your AI Tool
Claude Desktop Configuration
Add to your claude_desktop_config.json:
Alternative using absolute path:
Claude Code Configuration
Add to your ~/.claude/settings.json (or project-level .claude/settings.json):
OpenAI ChatGPT Configuration
Add to your MCP configuration:
Agent Skill
A companion Sidvy Skill is available for AI agents that support the Agent Skills format (Claude Code, OpenClaw, etc.). The skill provides contextual instructions that help agents use the Sidvy MCP tools more effectively.
Install with skills CLI
Install with OpenClaw
See the sidvy-skill repository for full documentation and manual installation.
Available Tools
Notes Management
list_notes- List notes with filtering and searchcreate_note- Create new markdown notesupdate_note- Edit note content and metadatadelete_note- Move notes to trashsearch_notes- Full-text search across notesget_note- Retrieve specific note by IDget_recent_notes- Get recently updated notesappend_to_note- Add content to existing notes
Groups Management
list_groups- List groups with hierarchical structurecreate_group- Create new groups for organizationupdate_group- Rename or move groupsdelete_group- Remove groups and childrenget_group_tree- Get complete group hierarchyget_root_groups- Get top-level groupsget_child_groups- Get child groups of a parentget_group_path- Get the full path from root to a groupmove_group- Reorganize group structurecreate_group_path- Create nested group paths
Todos Management
list_todos- List todos with filteringcreate_todo- Create new todoscreate_todos_for_note- Create multiple todos for a note at onceupdate_todo- Edit todo text or statusdelete_todo- Remove todostoggle_todo- Switch completion statuscomplete_todo/uncomplete_todo- Set completion stateget_pending_todos- Get incomplete todosget_completed_todos- Get finished todosget_todos_for_note- Get todos for specific noteget_todo_stats- Get completion statisticssearch_todos- Search todos by text content
Workspace Management
list_workspaces- List all workspacescreate_workspace- Create new workspace (max 2)update_workspace- Rename workspacesrename_workspace- Rename an existing workspacedelete_workspace- Remove workspace and contentget_workspace- Get workspace detailsget_default_workspace- Get user's default workspaceget_workspace_by_name- Find a workspace by nameget_workspace_stats- Get content statisticscan_create_workspace- Check if another workspace can be createdswitch_workspace- Change active workspace
Calendar Management
get_daily_note- Get a daily note for a specific dateupdate_daily_note- Update a daily note's contentappend_to_daily_note- Append content to a daily noteget_weekly_note- Get a weekly note for a specific weekupdate_weekly_note- Update a weekly note's contentappend_to_weekly_note- Append content to a weekly note
Example Usage
With Claude Desktop
Once configured, you can ask Claude:
"Create a new note called 'Meeting Notes' with a todo list for today's agenda"
"Search for all notes containing 'project planning' and show me the recent ones"
"Show me all my pending todos across all workspaces"
"Create a group structure for 'Projects/Web Development/Frontend' and add a note there"
Command Line Testing
You can test the server directly:
Development
Prerequisites
Node.js 18+
pnpm
Available Commands
Configuration Options
Environment Variables
SIDVY_API_TOKEN- Your JWT authentication token (required)SIDVY_API_URL- API base URL (default: https://sidvy.com/api)DEBUG- Enable debug logging (default: false)
API Rate Limits
The Sidvy API has reasonable rate limits for normal usage. The MCP server handles rate limiting gracefully and will retry requests when appropriate.
Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details.