Processes Markdown files containing titles, body text, and tags for automated posting and draft saving to note.com
Note Post MCP
The Universal MCP Server exposes tools for automated posting and draft saving to note.com. It reads Markdown files containing titles, body text, and tags, then publishes them to your note.com account using Playwright automation.
Installation
Prerequisites
Node.js 18+
A note.com account
note-state.jsonauthentication state file (obtained vianpm run login)Set
NOTE_POST_MCP_STATE_PATHin your environment (optional, defaults to~/.note-state.json)
Install from GitHub
Install Playwright Browser
This installs the Chromium browser required for automation.
Get an authentication state file
Run the login script to authenticate with note.com:
A browser window will open. Log in to note.com, then press Enter in the terminal. This creates a ~/.note-state.json file containing your authentication state. Store this file securely and reference it via NOTE_POST_MCP_STATE_PATH or pass it as a parameter.
Or install from npm (if published)
Setup: Claude Code (CLI)
Use this one-liner (replace with your real values):
To remove:
Setup: Cursor
Create .cursor/mcp.json in your client (do not commit it here):
Other Clients and Agents
Install via URI or CLI:
Add to your Claude Desktop configuration file (claude_desktop_config.json):
Command:
npxArgs:
["@gonuts555/note-post-mcp@latest"]Env:
NOTE_POST_MCP_STATE_PATH=/path/to/note-state.json
Type: STDIO
Command:
npxArgs:
@gonuts555/note-post-mcp@latestEnabled: true
Example ~/.config/opencode/opencode.json:
Add a new MCP and paste the standard JSON config from above.
Add the following to your Windsurf MCP configuration:
Setup: Codex (TOML)
Add the following to your Codex TOML configuration.
Example (Serena):
This server (minimal):
Configuration (Env)
NOTE_POST_MCP_STATE_PATH: Path to the note.com authentication state file (default:~/.note-state.json)NOTE_POST_MCP_TIMEOUT: Timeout in milliseconds for browser operations (default:180000)MCP_NAME: Server name override (default:note-post-mcp)
Available Tools
publish_note
Publishes an article to note.com from a Markdown file.
Inputs:
markdown_path(string, required): Path to the Markdown file containing title, body, and tagsthumbnail_path(string, optional): Path to the thumbnail image filestate_path(string, optional): Path to the note.com authentication state filescreenshot_dir(string, optional): Directory to save screenshotstimeout(number, optional): Timeout in milliseconds
Outputs: JSON object with:
success(boolean): Whether the operation succeededurl(string): URL of the published articlescreenshot(string): Path to the screenshotmessage(string): Success message
save_draft
Saves a draft article to note.com from a Markdown file.
Inputs:
markdown_path(string, required): Path to the Markdown file containing title, body, and tagsthumbnail_path(string, optional): Path to the thumbnail image filestate_path(string, optional): Path to the note.com authentication state filescreenshot_dir(string, optional): Directory to save screenshotstimeout(number, optional): Timeout in milliseconds
Outputs: JSON object with:
success(boolean): Whether the operation succeededurl(string): URL of the draft editor pagescreenshot(string): Path to the screenshotmessage(string): Success message
Markdown File Format
Your Markdown file should follow this format:
Alternatively, you can use array notation for tags:
Or use a simple # heading for the title if no front matter is present:
Body Content Details
The body content supports the following Markdown elements:
Front Matter Format:
All lines after the closing
---of the front matter are treated as body contentTrailing blank lines are automatically trimmed
Heading Format:
The first line starting with
#is treated as the title (not included in the body)Headings with
##or###are treated as part of the body content
Code Blocks:
Must have a closing fence (```)
Language specification is preserved
Entire code blocks are pasted as a unit
Image Insertion:
Use relative paths from the Markdown file:
Supports PNG, JPEG, and GIF formats
Local image files are automatically uploaded
Lists and Quotes:
Bullet lists (
-) and numbered lists (1.) are automatically continued by note.comBlock quotes (
>) are also automatically continuedMarkdown symbols are processed automatically after the first line
Horizontal Rules:
---in the body content is correctly processed as a horizontal ruleBlank lines immediately following horizontal rules are automatically skipped
URL Single Lines:
URLs on their own line are automatically expanded into link cards by note.com
YouTube and other embeds are also automatically processed
Example invocation (MCP tool call)
For saving a draft:
Troubleshooting
Authentication errors: Ensure your
note-state.jsonfile is valid and up-to-date. You may need to regenerate it if your session has expired.Ensure Node 18+: Run
node -vto verify your Node.js version.Build errors: Run
npm installandnpm run buildto ensure all dependencies are installed and TypeScript is compiled.Local runs: After building, test locally with
npx note-post-mcp(it will wait for MCP messages on stdin).Inspect publish artifacts: Run
npm pack --dry-runto see what files will be included in the published package.Timeout issues: If operations are timing out, increase
NOTE_POST_MCP_TIMEOUTor pass a largertimeoutparameter.Playwright browser not installed: Run
npm run install-browserornpx playwright install chromiumto install the required browser.
References
Name Consistency & Troubleshooting
Always use CANONICAL_ID (
note-post-mcp) for identifiers and keys.Use CANONICAL_DISPLAY (
Note Post MCP) only for UI labels.Do not mix different names across clients.
Consistency Matrix
npm package name →
note-post-mcpBinary name →
note-post-mcpMCP server name (SDK metadata) →
note-post-mcpEnv default MCP_NAME →
note-post-mcpClient registry key →
note-post-mcpUI label →
Note Post MCP
Conflict Cleanup
Remove any old entries with different names and re-add with
note-post-mcp.Ensure global
.mcp.jsonor client registries only usenote-post-mcpfor keys.Cursor: Configure in the UI only. This project does not include
.cursor/mcp.json.
Example
Correct:
"mcpServers": { "note-post-mcp": { "command": "npx", "args": ["@gonuts555/note-post-mcp@latest"] } }Incorrect: Using different keys like
"NotePost"or"note_post"(will conflict withnote-post-mcp)
License
MIT