JustBlogged
Server Details
Create, edit, organize, publish, and configure JustBlogged blogs from MCP clients.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
45 toolscreate_blogCreate blogInspect
Create a new blog. Subdomain is auto-generated from the name. Requires account-level OAuth or a user-scoped API key.
| Name | Required | Description | Default |
|---|---|---|---|
| logo | No | Optional logo URL. | |
| name | Yes | Blog name. | |
| description | No | Optional blog description. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
create_collectionCreate collectionInspect
Create a new collection with name, slug, and optional description.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Collection name. | |
| slug | Yes | Collection slug. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| description | No | Optional collection description. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
create_pageCreate pageInspect
Create a new static page with title, HTML body, metadata, slug, image, and status.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Page HTML body. | |
| slug | No | Page slug. Auto-generated from title when omitted. | |
| image | No | Optional featured image path or URL. Use upload_image for local files. | |
| title | Yes | Page title. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| status | No | Publishing status. Default: draft. | draft |
| metadata | No | Custom metadata entries as key/value objects. Maximum 20 entries; description should be 200 characters or fewer. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
create_postCreate postInspect
Create a new blog post with title, HTML content, author, collection, tags, metadata, slug, image, and publishing options.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | Post slug. Auto-generated from title when omitted. | |
| tags | No | Tag names. Maximum 10 tags. | |
| image | No | Optional featured image path or URL. Use upload_image for local files. | |
| title | Yes | Post title. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| status | No | Publishing status. Default: draft. | draft |
| content | Yes | Post HTML content. | |
| authorId | No | Optional author user ID from list_blog_members. Assigning another member requires owner or admin access. | |
| metadata | No | Custom metadata entries as key/value objects. Maximum 20 entries; description should be 200 characters or fewer. | |
| published_at | No | Optional publish datetime in ISO 8601 format. | |
| collection_id | Yes | Collection ID for the post. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
create_redirectCreate redirectInspect
Create a redirect for a blog. Requires owner or admin access through account-level OAuth or a user-scoped API key.
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Whether this redirect should be applied. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| destination | Yes | Destination site path or absolute HTTP(S) URL. | |
| source_path | Yes | Incoming site path to redirect, starting with a single /. Query strings and fragments are not allowed. | |
| status_code | No | HTTP redirect status code. Use 301 for permanent redirects and 302 for temporary redirects. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
decide_content_reviewDecide content reviewDestructiveInspect
Approve a pending content review or request changes. Approving a staged update to published content applies that revision.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| comment | No | Review comment. Required when requesting changes; maximum 2,000 characters. | |
| decision | Yes | Review decision. | |
| reviewId | Yes | Review ID from list_content_reviews. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_blogDelete blogDestructiveInspect
Delete a blog by ID. Only the blog owner can delete. Active subscriptions are cancelled automatically.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_collectionDelete collectionDestructiveInspect
Delete a collection by ID and optionally reassign its posts to another collection.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| reassign_to | No | Optional collection ID that should receive the deleted collection's posts. | |
| collectionId | Yes | Collection ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_pageDelete pageDestructiveInspect
Delete a static page by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| pageId | Yes | Page ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_postDelete postDestructiveInspect
Delete a blog post by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| postId | Yes | Post ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_redirectDelete redirectDestructiveInspect
Delete a redirect by ID. Requires owner or admin access through account-level OAuth or a user-scoped API key.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| redirectId | Yes | Redirect ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_tagDelete tagDestructiveInspect
Delete a blog tag by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| tagId | Yes | Tag ID. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
delete_theme_fileDelete theme fileDestructiveInspect
Delete a custom theme file from a blog. Requires a Pro subscription. Cannot delete built-in-only files.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| file_path | Yes | Theme file path relative to the theme root. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_blogGet blogRead-onlyIdempotentInspect
Get a single blog by ID, including settings like subdomain, domain, logo, and metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_blog_metadataGet blog metadataRead-onlyIdempotentInspect
Get custom metadata for a blog (SEO fields, themeId, etc.). Does not include themeSettings values.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_content_revisionGet content revisionRead-onlyIdempotentInspect
Get one saved post or page revision, including its complete content snapshot.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| contentId | Yes | Post or page ID. | |
| revisionId | Yes | Revision ID from list_content_revisions. | |
| contentType | Yes | Content type. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_latest_content_reviewGet latest content reviewRead-onlyIdempotentInspect
Get the latest review associated with the newest saved revision of a post or page.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| contentId | Yes | Post or page ID. | |
| contentType | Yes | Content type. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_pageGet pageRead-onlyIdempotentInspect
Get a single static page by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| pageId | Yes | Page ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_postGet postRead-onlyIdempotentInspect
Get a single blog post by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| postId | Yes | Post ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_theme_fileGet theme fileRead-onlyIdempotentInspect
Read a theme file by path (e.g. layouts/theme.liquid). Falls back to the active built-in theme when no custom copy exists.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| file_path | Yes | Text theme file path ending in .liquid, .css, .js, .html, .json, .xml, or .txt. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
get_theme_settingsGet theme settingsRead-onlyIdempotentInspect
Get theme settings schema and current values for a blog's active theme.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_available_themesList available themesRead-onlyIdempotentInspect
List built-in themes available for a blog and show which theme is currently active.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_blog_membersList blog membersRead-onlyIdempotentInspect
List blog members who can be assigned as post authors. Use a member id as authorId in create_post or update_post.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_blogsList blogsRead-onlyIdempotentInspect
List the authenticated user's accessible blogs so later tool calls can target the right blogId.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_collectionsList collectionsRead-onlyIdempotentInspect
List all collections for a blog.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_content_reviewsList content reviewsRead-onlyIdempotentInspect
List content review requests for a blog, filtered by status.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| status | No | Review status. Default: pending. | pending |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_content_revisionsList content revisionsRead-onlyIdempotentInspect
List the saved revision history for a post or page. Returns revision metadata without full snapshots.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| contentId | Yes | Post or page ID. | |
| contentType | Yes | Content type. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_pagesList pagesRead-onlyIdempotentInspect
List static pages with pagination, filtering, and sorting.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number. Default: 1. | |
| limit | No | Page size. Default: 30, maximum: 100. | |
| order | No | Sort direction. Default: desc. | desc |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| status | No | Filter by page status. | |
| orderBy | No | Sort field. Default: updatedAt. | updatedAt |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_postsList postsRead-onlyIdempotentInspect
List blog posts with pagination, filtering, and sorting by status, collection, tag, author, or date.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number. Default: 1. | |
| limit | No | Page size. Default: 30, maximum: 100. | |
| order | No | Sort direction. Default: desc. | desc |
| tagId | No | Filter by tag ID. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| status | No | Filter by post status. | |
| userId | No | Filter by author user ID. | |
| orderBy | No | Sort field. Default: createdAt. | createdAt |
| collectionId | No | Filter by collection ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_redirectsList redirectsRead-onlyIdempotentInspect
List redirects for a blog with search, status, type, and pagination filters. Requires owner or admin access through account-level OAuth or a user-scoped API key.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number, starting at 1. | |
| type | No | Filter by HTTP status code. | all |
| limit | No | Redirects per page, from 1 to 100. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| search | No | Search source paths and destinations. | |
| status | No | Filter by active state. | all |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_tagsList tagsRead-onlyIdempotentInspect
List blog tags with optional case-insensitive search filtering.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| search | No | Optional tag name search filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
list_theme_filesList theme filesRead-onlyIdempotentInspect
List the theme file tree for a blog (layouts, templates, assets, etc.).
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
submit_content_reviewSubmit content reviewInspect
Submit the latest saved revision of a draft post or page for review.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| comment | No | Optional review comment. Maximum 2,000 characters. | |
| contentId | Yes | Post or page ID. | |
| contentType | Yes | Content type. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
switch_themeSwitch themeDestructiveInspect
Switch a blog to a different built-in theme or to custom if theme files exist.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| theme_id | Yes | Theme ID. Use custom for blogs with edited theme files. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_blogUpdate blogDestructiveInspect
Update blog settings including name, subdomain, description, and logo. Requires owner or admin access.
| Name | Required | Description | Default |
|---|---|---|---|
| logo | No | Updated logo URL. | |
| name | Yes | Updated blog name. | |
| blogId | Yes | Blog ID. | |
| subdomain | Yes | Updated blog subdomain. | |
| description | No | Updated blog description. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_blog_domainUpdate blog domainDestructiveInspect
Configure or remove a blog's custom domain. Use domain only for custom domains (requires CNAME/A DNS). Use domain + domain_slug for subdirectory hosting (requires TXT DNS verification). Pass an empty domain string to remove the domain.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. | |
| domain | Yes | Custom domain (e.g. blog.example.com) or root domain for subdirectory mode. Pass empty string to remove. | |
| domain_slug | No | Optional subdirectory slug for subdirectory hosting (e.g. example.com + blog). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_blog_metadataUpdate blog metadataDestructiveInspect
Merge custom metadata into a blog. Pass only the keys you want to add or update. Theme changes use the dedicated theme tools.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. | |
| metadata | Yes | Custom blog metadata entries as key/value objects. Theme changes must use switch_theme or update_theme_settings. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_collectionUpdate collectionDestructiveInspect
Update an existing collection's name, slug, or description.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Updated collection name. | |
| slug | No | Updated collection slug. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| description | No | Updated collection description. | |
| collectionId | Yes | Collection ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_pageUpdate pageDestructiveInspect
Update any editable field on an existing static page.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Updated HTML body. | |
| slug | No | Updated page slug. | |
| image | No | Updated featured image path or URL. Use upload_image for local files. | |
| title | No | Updated page title. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| pageId | Yes | Page ID. | |
| status | No | Updated publishing status. | |
| metadata | No | Custom metadata entries as key/value objects. Maximum 20 entries; description should be 200 characters or fewer. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_postUpdate postDestructiveInspect
Update any editable field on an existing blog post, including its author.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | Updated post slug. | |
| tags | No | Updated tag names. | |
| image | No | Updated featured image path or URL. Use upload_image for local files. | |
| title | No | Updated post title. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| postId | Yes | Post ID. | |
| status | No | Updated publishing status. | |
| content | No | Updated HTML content. | |
| authorId | No | Updated author user ID from list_blog_members. Reassignment requires owner or admin access. | |
| metadata | No | Custom metadata entries as key/value objects. Maximum 20 entries; description should be 200 characters or fewer. | |
| published_at | No | Updated publish datetime in ISO 8601 format. | |
| collection_id | No | Updated collection ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_redirectUpdate redirectDestructiveInspect
Update a redirect source, destination, status code, or active state. Requires owner or admin access through account-level OAuth or a user-scoped API key.
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Whether this redirect should be applied. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| redirectId | Yes | Redirect ID. | |
| destination | No | Updated destination site path or absolute HTTP(S) URL. | |
| source_path | No | Updated incoming site path, starting with a single /. | |
| status_code | No | Updated HTTP redirect status code. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_tagUpdate tagDestructiveInspect
Rename a blog tag.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | New tag name. Allowed characters: letters, numbers, spaces, hyphens, underscores, periods. | |
| tagId | Yes | Tag ID. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_theme_fileUpdate theme fileDestructiveInspect
Create or update a theme file. Requires a Pro subscription. Copies the built-in theme first if no custom files exist yet.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| content | Yes | Full file content. | |
| file_path | Yes | Text theme file path ending in .liquid, .css, .js, .html, .json, .xml, or .txt. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
update_theme_settingsUpdate theme settingsDestructiveInspect
Update one or more theme setting values for a blog. Unspecified values are preserved. Use get_theme_settings first to discover valid keys.
| Name | Required | Description | Default |
|---|---|---|---|
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| values | Yes | JSON object containing theme setting names and values from get_theme_settings. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
upload_imageUpload imageInspect
Upload an image to a blog. Use the returned path as the image value when creating or updating a post, page, or blog.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Base64-encoded image bytes without a data URL prefix. Maximum decoded size: 8 MB. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. | |
| filename | Yes | Original image filename, including its extension. | |
| mimeType | Yes | Image MIME type. SVG is supported only for logo uploads. | |
| uploadType | No | Where the image will be used. Default: post. | post |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Hosted MCP for BlogBat: read, write, generate, and publish blog articles and content.
Create, edit, preview, publish, and manage web pages from MCP-capable AI clients.
Create and manage Lindo AI websites, pages, blogs, clients, and credits from any MCP client.
Manage BrightSite websites: pages, blog posts, components, forms, media, and analytics.
Related MCP Servers
- AlicenseAqualityCmaintenanceDraft, publish, and manage VeloCMS blogs from any MCP client: 12 tools covering posts, media, comments, members, and site settings through the VeloCMS REST API with a single scoped API key.1267MIT
- FlicenseNot gradedqualityBmaintenanceMCP wrapper over the dustinedwards.info operator publish API, exposing five tools for managing blog posts (list, get, save, sync, delete) while containing no policy of its own.
- AlicenseAqualityCmaintenanceAn MCP server for managing Google Blogger blogs, posts, pages, comments, and media via the Blogger API v3. Includes OAuth authentication, Base64 image embedding, and lightweight listing modes.2952MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for managing Blogger posts: create, update, retrieve posts, and upload images to GCS via natural language.2MIT