note_MCP_server
Verified Safeby annpannmannnouta-afk
Overview
Enables AI assistants to programmatically interact with Note.com, offering features like article search, user RSS feed retrieval, content reading, and draft creation.
Installation
python3 /path/to/note_MCP_server/server.pyEnvironment Variables
- NOTE_SESSION_COOKIE
- NOTE_USER_AGENT
Security Notes
The server correctly handles sensitive information (session cookie) via environment variables. It does not use `eval` or other notoriously unsafe functions. The `get_note_content` tool could theoretically be directed to arbitrary URLs by the AI, leading to unintended web scraping or resource consumption, though the underlying `requests` library generally mitigates severe SSRF vulnerabilities. The `create_draft` tool relies on a user-provided session cookie and sends AI-generated HTML; if Note.com's platform does not adequately sanitize user input, there could be risks, but this is an interaction risk rather than a direct server vulnerability.
Similar Servers
google-docs-mcp
Provides a comprehensive Model Context Protocol (MCP) server that enables AI assistants to programmatically interact with Google Docs (reading, writing, formatting, structuring) and manage Google Drive files (discovery, folder management, file operations, document creation).
contentful-mcp-server
Enables AI assistants to manage Contentful content, assets, and content models via natural language commands, facilitating content creation, organization, and workflow automation.
obsidian-http-mcp
Facilitates AI agents, such as Claude Code, to manage Obsidian notes by providing an HTTP-native Model Context Protocol (MCP) server, bypassing stdio transport bugs.
better-notion-mcp
Provides a Markdown-first Model Context Protocol (MCP) server for Notion, optimized for AI agents to interact with Notion pages and databases efficiently.