Provides access to Zenn's content platform API, allowing fetching lists of articles and books from Zenn.dev.
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., "@Zenn MCP Serverfetch recent articles about Python programming"
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.
mcp-server-zenn: Unofficial MCP server for Zenn (https://zenn.dev/)
Overview
This is an unofficial Model Context Protocol server for Zenn. Build on top of Zenn's dev API.
Related MCP server: Unstructured Document Processor MCP
Features
Fetch a list of articles
Fetch a list of books
Run this project locally
This project is not yet set up for ephemeral environments (e.g. uvx usage). Run this project locally by cloning this repo:
git clone https://github.com/shibuiwilliam/mcp-server-zenn.gitYou can launch the MCP inspector via npm:
npx @modelcontextprotocol/inspector uv --directory=src/mcp_server_zenn run mcp-server-zennUpon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
OR Add this tool as a MCP server:
{
"zenn": {
"command": "uv",
"args": [
"--directory",
"/path/to/mcp-server-zenn",
"run",
"mcp-server-zenn"
]
}
}Deployment
(TODO)