simplenote-mcp-server
Verified Safeby docdyhr
Overview
A lightweight Model Context Protocol (MCP) server that integrates Simplenote with Claude Desktop to provide note management, search, and organization capabilities for AI assistants.
Installation
docker run -d --name simplenote-mcp -e SIMPLENOTE_EMAIL=your.email@example.com -e SIMPLENOTE_PASSWORD=your-password -p 8000:8000 docdyhr/simplenote-mcp-server:latestEnvironment Variables
- SIMPLENOTE_EMAIL
- SIMPLENOTE_PASSWORD
- SYNC_INTERVAL_SECONDS
- LOG_LEVEL
Security Notes
The project demonstrates excellent security practices including container hardening (non-root user, read-only filesystem, no-new-privileges), input validation (e.g., `SecurityValidator` for content, IDs, tags, queries), environment variable-based credential management (no hardcoded secrets found), rate limiting, and security monitoring. It uses `subprocess.run` in scripts, but generally without `shell=True` for safer execution. Regular vulnerability scanning (Bandit, CodeQL, Trivy) and dependency updates (Dependabot) are integrated into the CI/CD pipeline. No 'eval' or obvious malicious patterns were detected.
Similar Servers
zen-mcp-server
A server for coordinating and managing AI agents, likely for simulations or complex task execution, leveraging Claude LLMs.
vibe-check-mcp-server
Provides a plug-and-play AI meta-mentor layer for LLM agents, offering metacognitive questioning to prevent over-engineering, reasoning lock-in, and misalignment.
mcp_massive
An AI agent orchestration server, likely interacting with LLMs and managing multi-agent workflows.
AgentUp
AgentUp is an infrastructure framework for developing, deploying, and managing production-ready AI agents, providing Docker-like consistency, security, and extensibility.