← justblogged.com

INDIVIDUAL MCP TOOL

delete_post

Delete a blog post by ID.

justblogged.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://justblogged.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for delete_post and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.
  • A tool name or description contains a deletion term.

Parent server

justblogged.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.justblogged-mcp]
url = "https://justblogged.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "justblogged-mcp": {
      "type": "http",
      "url": "https://justblogged.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: justblogged-mcp
Remote MCP URL: https://justblogged.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "justblogged-mcp": {
      "url": "https://justblogged.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "justblogged-mcp": {
      "type": "http",
      "url": "https://justblogged.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "justblogged-mcp",
  "transport": "streamable-http",
  "url": "https://justblogged.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_blogs — List the authenticated user's accessible blogs so later tool calls can target the right blogId.
  • get_blog — Get a single blog by ID, including settings like subdomain, domain, logo, and metadata.
  • list_blog_members — List blog members who can be assigned as post authors.
  • create_blog — Create a new blog.
  • update_blog — Update blog settings including name, subdomain, description, and logo.
  • delete_blog — Delete a blog by ID.
  • get_blog_metadata — Get custom metadata for a blog (SEO fields, themeId, etc.
  • update_blog_metadata — Merge custom metadata into a blog.