blogger-mcp
Provides tools for managing Google Blogger blogs, including listing blogs, retrieving posts, creating drafts, updating content, publishing posts, and deleting content through the Blogger API v3.
Integrates with Google's Blogger API v3 using OAuth 2.0 authentication to enable blog management operations through Google's platform.
Requires Google Cloud Console configuration for OAuth client setup and Blogger API v3 activation to enable authentication and API access for blog management.
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., "@blogger-mcplist my recent blog posts"
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.
blogger-mcp
A custom MCP server based on the Google Blogger API v3. It provides tools for MCP hosts like Claude Code / Claude Desktop to list, create, edit, and delete posts on your Blogger blog.
Key Features (MCP Tools)
Tool | Description |
| List blogs for the authenticated user |
| Blog URL → Blog ID lookup |
| List blog posts (supports status filter) |
| Retrieve a specific post |
| Create a new post (save as draft with |
| Update a post (title/content/labels) |
| Permanently delete a post |
| Publish a draft post |
| Revert a published post to draft status |
Related MCP server: MCP-Google-Doc
Architecture
Claude Code ──stdio──► blogger-mcp (Node)
│
├─ src/index.ts : MCP server (tools 등록/디스패치)
├─ src/auth.ts : OAuth 2.0 토큰 로드/저장/갱신
└─ src/auth-cli.ts : 최초 1회 대화형 인증용 CLI
│
▼
Google Blogger API v3Authentication: OAuth 2.0 (Desktop app). Run
npm run authonce to launch a local callback server, receive the token, and save it to~/.config/blogger-mcp/token.json. It is automatically refreshed using a refresh token thereafter.Scopes:
https://www.googleapis.com/auth/bloggerTransport: stdio (MCP host launches as a child process)
Quick Start
1. Installation and Build
git clone https://github.com/mech12/blogger-mcp.git
cd blogger-mcp
npm install
npm run build2. Prepare OAuth Client
Enable Blogger API v3 in the Google Cloud Console, create a Desktop app type OAuth client, and download client_secret.json.
mkdir -p ~/.config/blogger-mcp
cp /path/to/client_secret.json ~/.config/blogger-mcp/client_secret.jsonFor detailed Google Cloud configuration, refer to Blogger API v3 Authentication Issuance below.
3. Initial Authentication
npm run authOpen the URL displayed in your browser and grant permission to generate ~/.config/blogger-mcp/token.json.
4. Register with Claude Code
claude mcp add blogger --scope user -- node /absolute/path/to/blogger-mcp/dist/index.jsOr directly in ~/.claude.json:
{
"mcpServers": {
"blogger": {
"command": "node",
"args": ["/absolute/path/to/blogger-mcp/dist/index.js"]
}
}
}Environment Variables
Variable | Default | Description |
|
| Credentials directory |
|
| OAuth client JSON path |
Blogger API v3 Authentication Issuance (Summary)
Create a Google Cloud Project — https://console.cloud.google.com/
Enable
Blogger API v3in the API LibraryConfigure OAuth Consent Screen
User Type: External
Add Scope:
https://www.googleapis.com/auth/bloggerAdd your Google account as a test user
Credentials → OAuth Client ID
Application type: Desktop app
Download JSON after creation →
~/.config/blogger-mcp/client_secret.json
Verify Blog ID
Use the
blogID=...number from the Blogger admin URL or theget_blog_by_urltool.
Detailed project-specific guides are managed in
docs/vibe/mcp/blogger-mcp.mdof the host project.
Design Notes
Stack: TypeScript + Node 18+,
@modelcontextprotocol/sdk,googleapis,google-auth-library.Token Storage:
~/.config/blogger-mcp/. Protected by.gitignore.Error Strategy: Tool call failures are automatically wrapped by MCP. If authentication is missing, guide the user with the message
No stored token. Runnpm run authfirst..Expansion Roadmap:
Markdown → HTML conversion tool (based on
marked)Image upload (Blogger requires bypassing Picasa/Google Photos → future option)
Scheduled publishing (setting the
publishedfield)
Development
npm run dev # tsc --watch
npm run build # dist/ 생성
npm start # dist/index.js 실행 (MCP stdio 서버)
npm run auth # OAuth 최초 인증License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceMCP server for managing Ghost blogs from AI coding editors. Create, edit, publish, and sync blog posts directly from tools like Claude Code or Cursor.131MIT
- AlicenseNot gradedqualityFmaintenanceMCP server that allows you to connect to Google Docs through Claude, enabling listing, reading, creating, updating, searching, and deleting documents.1,39647MIT
- FlicenseDqualityDmaintenanceMCP server for blog management that provides tools to get, search, and create blog posts via a mock API.3
- AlicenseNot gradedqualityCmaintenanceMCP server for managing Blogger posts: create, update, retrieve posts, and upload images to GCS via natural language.2MIT
Related MCP Connectors
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mech12/blogger-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server