Manage multilingual Polyblog articles, localization coverage and editorial plans through OAuth.
Abgeleitet aus den Transporten, die dieser Eintrag deklariert (streamable-http). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.
Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.
Aus einem echten MCP-Handshake initialize → tools/list gegen den deklarierten Endpunkt gelesen. Es wurde nie ein Tool aufgerufen — tools/list ist der lesende Introspektionsaufruf, den das Protokoll dafür vorsieht. Es spiegelt wider, was der Server in diesem Moment angeboten hat; ein gehosteter Endpunkt ist an keine Version gebunden und kann sich ohne Ankündigung ändern.
https://mcp.polyblog.io/mcp18 Tools · 795 mssearch_articlesSearch Polyblog articles with optional filters by blog, locale, slug, and published state. Returns a Markdown table of matches with id, title, locale, slug, and published. Use the returned cursor to page through results.Search Polyblog articles with optional filters by blog, locale, slug, and published state. Returns a Markdown table of matches with id, title, locale, slug, and published. Use the returned cursor to page through results.
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId | string | Filter to a specific blog |
| locale | string | ISO 639-1 locale code, e.g. "en", "it" |
| slug | string | Exact slug match |
| published | string | Filter by published state |
| limit | integer | — |
| cursor | string | Opaque pagination cursor from a previous call |
get_articleFetch a single Polyblog article by id or by slug+locale. Returns allowlisted metadata and at most 8,000 characters of article content, with an explicit truncation flag.Fetch a single Polyblog article by id or by slug+locale. Returns allowlisted metadata and at most 8,000 characters of article content, with an explicit truncation flag.
| Parameter | Typ | Beschreibung |
|---|---|---|
| idOrSlug* | string | Article id or slug |
| locale | string | Locale to disambiguate when looking up by slug |
list_article_translationsList up to 100 locale versions of one article, grouped by its `originalArticleId`, and mark a truncated result. Returns safe article metadata and translation method. Pass `blogId` to compare against at most 100 configured locales.List up to 100 locale versions of one article, grouped by its `originalArticleId`, and mark a truncated result. Returns safe article metadata and translation method. Pass `blogId` to compare against at most 100 configured locales.
| Parameter | Typ | Beschreibung |
|---|---|---|
| originalArticleId* | string | Original article id — the id of the source-locale article; every translation shares it |
| blogId | string | Optional blog id. When given, the reply also lists the blog locales that are still missing a translation. |
create_articleCreate a new Polyblog article in the given blog. Returns the created article id and title and fires an `article.created` webhook. Defaults to unpublished; passing `published: true` also creates a public article page. To write a TRANSLATION of an article you already have, pass that article's id as `…Create a new Polyblog article in the given blog. Returns the created article id and title and fires an `article.created` webhook. Defaults to unpublished; passing `published: true` also creates a public article page. To write a TRANSLATION of an article you already have, pass that article's id as `…
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Target blog id |
| title* | string | — |
| content* | string | Article body (Markdown or HTML based on format) |
| format | string | — |
| locale | string | — |
| originalArticleId | string | Create this article as the `locale` version of an existing article, inside that article's translation group. Pass the ORIGINAL id — the one `list_article_trans… |
| slug | string | — |
| description | string | — |
| author | string | — |
| categories | array | — |
| published | boolean | — |
update_articlePartially update an existing Polyblog article by id. Only the fields you pass are changed; everything else is preserved. Passing `published` can publish or unpublish its public page, and every update fires an `article.updated` webhook.Partially update an existing Polyblog article by id. Only the fields you pass are changed; everything else is preserved. Passing `published` can publish or unpublish its public page, and every update fires an `article.updated` webhook.
| Parameter | Typ | Beschreibung |
|---|---|---|
| id* | string | Article id to update |
| title | string | — |
| content | string | — |
| format | string | — |
| description | string | — |
| slug | string | — |
| author | string | — |
| categories | array | — |
| published | boolean | — |
delete_articleprivilegiertPermanently delete a Polyblog article by id. Deleting a published article removes its public page and fires an `article.deleted` webhook. This cannot be undone — confirm with the user before calling.Permanently delete a Polyblog article by id. Deleting a published article removes its public page and fires an `article.deleted` webhook. This cannot be undone — confirm with the user before calling.
| Parameter | Typ | Beschreibung |
|---|---|---|
| id* | string | Article id to delete |
generate_articleGenerate a text-only SEO blog article: an LLM drafts bounded HTML, internal links come from the blog customDomain sitemap.xml, and the article is saved as a draft by default. This MCP tool always disables cover and inline image generation. Pass `topic` or `topicIdeaId`. It spends paid model usage a…Generate a text-only SEO blog article: an LLM drafts bounded HTML, internal links come from the blog customDomain sitemap.xml, and the article is saved as a draft by default. This MCP tool always disables cover and inline image generation. Pass `topic` or `topicIdeaId`. It spends paid model usage a…
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Target blog id |
| topic | object | Topic to write about. Skip if using topicIdeaId. |
| topicIdeaId | string | Use a previously-saved topic idea instead of supplying topic.title. |
| locale | string | Locale code (defaults to blog defaultLocale). |
| autoPublish | boolean | Publish immediately. Default false (saves as draft). |
| persist | boolean | Save to Mongo. Default true. Set false for a dry-run preview. |
| sitemapMaxUrls | integer | Max sitemap URLs to feed the LLM as the allowed internal-link pool (default 150). |
list_blogsList Polyblog blogs the authenticated tenant has access to. Returns a bounded page of id, name, and custom domain. Pass the returned cursor to continue.List Polyblog blogs the authenticated tenant has access to. Returns a bounded page of id, name, and custom domain. Pass the returned cursor to continue.
| Parameter | Typ | Beschreibung |
|---|---|---|
| limit | integer | — |
| cursor | string | Opaque pagination cursor from a previous call |
get_blogFetch a single Polyblog blog by id or name. Returns the blog metadata formatted as Markdown.Fetch a single Polyblog blog by id or name. Returns the blog metadata formatted as Markdown.
| Parameter | Typ | Beschreibung |
|---|---|---|
| idOrName* | string | Blog id (uuid) or name |
get_blog_localization_summarySummarize multilingual article coverage for one organization-owned Polyblog blog. Compares configured locales with up to 100 recently edited article translations and clearly marks the result when the sample is truncated.Summarize multilingual article coverage for one organization-owned Polyblog blog. Compares configured locales with up to 100 recently edited article translations and clearly marks the result when the sample is truncated.
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Polyblog blog id or name to audit |
create_blogCreate a new Polyblog blog in the signed-in organization. The name is globally unique because it becomes the public <name>.polyblog.io subdomain, so a clashing name fails rather than being adjusted. Creating a blog also fires a `blog.created` webhook to the organization subscribers.Create a new Polyblog blog in the signed-in organization. The name is globally unique because it becomes the public <name>.polyblog.io subdomain, so a clashing name fails rather than being adjusted. Creating a blog also fires a `blog.created` webhook to the organization subscribers.
| Parameter | Typ | Beschreibung |
|---|---|---|
| name* | string | Blog name; also becomes the public <name>.polyblog.io subdomain and must be globally unique |
| description | string | — |
| defaultLocale | string | ISO 639-1 code the blog writes in by default, e.g. "en" |
| locales | array | ISO 639-1 codes the blog publishes translations in |
| articlesFormat | string | — |
get_sitemap_urlsSummarize URLs from the blog's customDomain `/sitemap.xml` (following a sitemap index one level) and return at most 25 safe sample URLs. Used by `generate_article` as the allowed internal-link pool.Summarize URLs from the blog's customDomain `/sitemap.xml` (following a sitemap index one level) and return at most 25 safe sample URLs. Used by `generate_article` as the allowed internal-link pool.
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Target blog id |
| locale | string | Two-letter locale to filter by (e.g. "en") |
| maxUrls | integer | Cap on URLs returned (default 500, max 2000) |
refresh_topic_ideasFetch fresh content from bounded Reddit subreddits and public HTTPS RSS feeds, spend paid model usage to score candidates, dedupe against published articles, and persist the keepers. Returns aggregate counts and at most five safe ideas; raw source errors are suppressed. Confirm sources and limits f…Fetch fresh content from bounded Reddit subreddits and public HTTPS RSS feeds, spend paid model usage to score candidates, dedupe against published articles, and persist the keepers. Returns aggregate counts and at most five safe ideas; raw source errors are suppressed. Confirm sources and limits f…
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Target blog id |
| sources | object | Override the blog topicSources. If omitted, the blog `topicSources` field is used. |
| audience | string | Audience description. Defaults to the blog `context` field if omitted. |
| sinceHours | integer | Lookback window in hours (default 168 = 7 days) |
| limitPerSource | integer | Max items fetched per source (default 25) |
| minScore | integer | Minimum LLM score (0-10) to keep a candidate (default 5) |
| perSourceCap | integer | Cap on scored candidates per source (default: no cap) |
list_topic_ideasList saved topic ideas for a blog, optionally filtered by status and minimum score. Returns id, score, title, status, and source. Use the id with `generate_article` to write the article.List saved topic ideas for a blog, optionally filtered by status and minimum score. Returns id, score, title, status, and source. Use the id with `generate_article` to write the article.
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Target blog id |
| status | string | Filter by lifecycle status (default: all) |
| minScore | integer | Minimum LLM score (0-10) to include |
| limit | integer | — |
| cursor | string | — |
set_topic_idea_statusMove a saved topic idea through its lifecycle: mark it `used` once an article has been written from it, `dismissed` to keep it out of future suggestions, or back to `new`. Only the status (and optionally the article it produced) is changed.Move a saved topic idea through its lifecycle: mark it `used` once an article has been written from it, `dismissed` to keep it out of future suggestions, or back to `new`. Only the status (and optionally the article it produced) is changed.
| Parameter | Typ | Beschreibung |
|---|---|---|
| topicIdeaId* | string | Topic idea id from `list_topic_ideas` |
| status* | string | New lifecycle status for the topic idea |
| usedForArticleId | string | Article id this idea produced; only meaningful with "used" |
set_topic_sourcesReplace the Reddit subreddits and/or public HTTPS RSS feeds used for topic research. Confirm the complete replacement lists before calling. Once set, `refresh_topic_ideas` only needs the blogId. Pass `reddit` and/or `rss`, or `clear: true` to wipe all sources.Replace the Reddit subreddits and/or public HTTPS RSS feeds used for topic research. Confirm the complete replacement lists before calling. Once set, `refresh_topic_ideas` only needs the blogId. Pass `reddit` and/or `rss`, or `clear: true` to wipe all sources.
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Target blog id or name |
| array | Subreddit names (without /r/). Replaces the existing list. | |
| rss | array | Full RSS / Atom feed URLs. Replaces the existing list. |
| clear | boolean | Remove the topicSources field entirely. |
show_blog_overviewRender a compact overview for a known Polyblog blog, including its domain, locales, and up to ten recently edited articles.Render a compact overview for a known Polyblog blog, including its domain, locales, and up to ten recently edited articles.
| Parameter | Typ | Beschreibung |
|---|---|---|
| blogId* | string | Polyblog blog id to render, at most 200 characters |
show_article_previewRender a focused preview for a known Polyblog article, including its publication state, metadata, and a bounded content excerpt.Render a focused preview for a known Polyblog article, including its publication state, metadata, and a bounded content excerpt.
| Parameter | Typ | Beschreibung |
|---|---|---|
| articleId* | string | Polyblog article id to preview, at most 200 characters |
18 von 18 Tools haben eine Beschreibung veröffentlicht.
Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.
Manage multilingual Polyblog articles, localization coverage and editorial plans through OAuth.
Verlinkte Namen öffnen den Forge-Index aller Einträge, bei denen dieses Tool beobachtet wurde. Alle indexierten Tools durchsuchen.
Dieser Eintrag veröffentlicht kein npm-Paket, daher hat Forge keinen Abhängigkeitsbaum dafür. Das ist eine Lücke in der Abdeckung — keine Aussage, dass er keine Abhängigkeiten hat.