taita-mcp-server
Click on "Deploy 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., "@taita-mcp-serverlist all my published 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.
Taita MCP Server
MCP server for the Taita Blog API. Manage blog posts from Claude Desktop, Claude Code, or any MCP-compatible client.
Setup
1. Get an API Key
Create one from the Taita CMS or via the API:
curl -X POST https://backend.taita.blog/api/api-keys \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "Claude Agent"}'2. Install
cd taita-mcp-server
npm install3. Configure
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"taita": {
"command": "node",
"args": ["/absolute/path/to/taita-mcp-server/index.js"],
"env": {
"TAITA_API_KEY": "tb_live_your_key_here",
"TAITA_API_URL": "https://backend.taita.blog/api/v1"
}
}
}
}Claude Code
Add to .claude/settings.json:
{
"mcpServers": {
"taita": {
"command": "node",
"args": ["/absolute/path/to/taita-mcp-server/index.js"],
"env": {
"TAITA_API_KEY": "tb_live_your_key_here",
"TAITA_API_URL": "https://backend.taita.blog/api/v1"
}
}
}
}Related MCP server: Halo MCP Server
Available Tools
Tool | Description |
| Create a new blog post (title, content, category, tags, status) |
| List posts with optional status filter and pagination |
| Get a single post by slug (includes full content) |
| Update an existing post's title, content, status, tags, etc. |
| Permanently delete a post by slug |
| List all blog categories |
| List all blog tags |
Example Usage
Once configured, you can ask Claude:
"Create a blog post about the future of AI in education"
"List all my published posts"
"Update the post 'my-first-post' to published status"
"What categories do I have?"
Environment Variables
Variable | Required | Default | Description |
| Yes | - | Your Taita Blog API key ( |
| No |
| API base URL |
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Create, edit, organize, publish, and configure JustBlogged blogs from MCP clients.
Create, manage, publish, and analyze Inblog content through AI agents.
Publish and manage articles, series, comments, reactions, newsletters and blog analytics.
SEO, competitor and AI-search data, plus blog management — draft, schedule and publish posts.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceManage your Ghost blog content directly from Claude, Cursor, or any MCP-compatible client, allowing you to create, edit, search, and delete posts with support for tag management and analytics.8 npmMIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Halo blog systems through natural language, supporting article creation/editing/publishing, categories, tags, attachments, and includes 10 AI writing prompts for content optimization and SEO.18MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to interact with the Google Blogger API v3 to manage blog posts and metadata. It supports the full post lifecycle including creating, updating, publishing, and deleting content through natural language.106 npmMIT
- FlicenseAqualityDmaintenanceEnables AI clients to manage Hexo blogs by providing tools for article CRUD operations, local previewing, and GitHub Pages deployment. It also supports site configuration access and automated Git backups to streamline the entire blogging workflow.121-