Skip to main content
Glama

Deckrun MCP サーバー

PyPI awesome-mcp-servers

注: ホストされている Deckrun エンドポイント (free.agenticdecks.com, deckrun-mcp-free.agenticdecks.com, api.agenticdecks.com) は契約ごとにプロビジョニングされます。アクセスと可用性 を参照してください。以下に記載されている pip install deckrun-mcp パッケージおよびローカル実行パスは、独自のデプロイメントに対してすぐに機能します。ホストされたアクセスについては、アクセスリクエスト を開いてください。1 営業日以内に回答いたします。

Agentic Decks による Deckrun 用 MCP サーバー — Markdown からプレゼンテーション PDF、ナレーション付き動画、音声を生成します。AI エージェントおよび IDE 向けに構築されています。

Deckrun はドキュメント実行エンジンです。AI がコンテンツを作成し、Deckrun がそれをピクセルパーフェクトなブランド化された PDF、ナレーション付き MP4 動画、MP3 音声にレンダリングします(すべて単一の Markdown ソースから)。スライドエディタも、動画ツールも、オーディオスタジオも不要です。

インストール: pip install deckrun-mcp


クイックスタート — インストール不要

HTTP トランスポートはホストされており、すぐに利用可能です。IDE に JSON スニペットを 1 つ追加するだけです。

VS Code (GitHub Copilot Chat — v1.99 以降)

プロジェクト内の .vscode/mcp.json (このファイルはリポジトリに含まれています):

{
  "servers": {
    "deckrun": {
      "type": "http",
      "url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Cursor

プロジェクト内の .cursor/mcp.json:

{
  "mcpServers": {
    "deckrun": {
      "url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Google Antigravity (Gemini CLI)

~/.gemini/antigravity/mcp_config.json:

{
  "mcpServers": {
    "deckrun": {
      "serverUrl": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Claude Code (ターミナル)

~/.claude/settings.json:

{
  "mcpServers": {
    "deckrun": {
      "type": "http",
      "url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Related MCP server: mcp-ToseaAI

Stdio インストール (Claude Desktop およびその他の stdio 専用クライアント)

pip install deckrun-mcp

Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "deckrun": {
      "command": "python",
      "args": ["/path/to/deckrun_mcp.py"]
    }
  }
}

有料ティア — API キーを追加します:

{
  "mcpServers": {
    "deckrun": {
      "command": "python",
      "args": ["/path/to/deckrun_mcp.py"],
      "env": { "DECKRUN_API_KEY": "dk_live_..." }
    }
  }
}

サブスクライブ後、agenticdecks.com で API キーを取得してください。


ツール

無料ティア (キー不要)

ツール

説明

get_slide_format

ライブスライドフォーマット仕様(レイアウトタグ、構文ルール、Markdown 例)を取得

generate_slide_deck

Deckrun Markdown を PDF に変換。公開 URL を返します(90 日で期限切れ)

有料ティア (DECKRUN_API_KEY を設定済み)

すべての無料ツールに加え、以下が利用可能です:

ツール

説明

generate_video

Markdown をナレーション付き MP4 に変換(非同期、job_id を返します)

generate_audio

スライドノートを MP3 ナレーションに変換(非同期、job_id を返します)

check_job

complete または failed になるまで非同期ジョブのステータスをポーリング

get_account

プラン名、使用済み/残りのレンダリングユニット、有効なアドオンを取得

validate_markdown

Deckrun Markdown をリントし、事前フライトの RU 見積もりを取得

list_themes

利用可能なスライド/ドキュメントテーマ(システム + カスタム)を一覧表示

list_voices

利用可能なナレーション音声(ID、名前、ティア、言語)を一覧表示


プロンプト例

設定が完了したら、AI に次のように尋ねてください:

"エッジコンピューティングの未来に関する 6 スライドのデッキを作成して"

AI は get_slide_format を呼び出して構文を学習し、Markdown を作成し、generate_slide_deck を呼び出して、クリック可能な PDF リンクを返信します。


HTTP エンドポイント

ティア

MCP エンドポイント

無料

https://deckrun-mcp-free.agenticdecks.com/mcp/

有料

https://deckrun-mcp.agenticdecks.com/mcp/

検出: GET <endpoint> はサーバーメタデータを JSON として返します。


リンク

Available Tools

2 tools
generate_slide_deckA

Convert Deckrun Markdown into a PDF slide deck. Call get_slide_format first to learn the correct Markdown format. Then call this tool with the completed Markdown. Returns: url (public PDF, 90-day expiry), slug, slides (count), warnings (non-fatal notices to self-correct), schema_version. Limits: max 10 slides, 50 KB Markdown. Slides separated by --- on its own line.

ParametersJSON Schema
NameRequiredDescriptionDefault
markdownYesComplete slide deck in Deckrun Markdown format. Must start with a title slide using <!-- <title-slide /> -->.

TDQS

A4.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. Discloses return values (url with expiry, slug, slides count, warnings, schema_version) and non-fatal notices. Could mention whether operation is destructive, but creation is implied.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise, well-structured sentences. Front-loads main action, then details prerequisites, return fields, and limits. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Complete for a simple tool with one parameter and no output schema. Covers prerequisites, limits, return values, and warnings. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage 100% with one parameter. Description adds crucial formatting constraint (must start with title slide using specific comment) and reiterates limits beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it converts Deckrun Markdown into a PDF slide deck, distinct from sibling get_slide_format which teaches the format.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to call get_slide_format first, provides limits (max 10 slides, 50 KB), and explains return fields including warnings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_slide_formatA

Fetch the authoritative Deckrun slide format specification. Call this first to learn all layout tags, Markdown syntax, and rules before writing slides. Returns JSON with layout_tags, surface_syntax, example_markdown, and limits.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must bear full burden. It states the tool returns JSON with specific fields, but does not explicitly declare it as read-only or side-effect-free, nor mention any auth or rate limits. The nature of the tool is apparent, but some behavioral detail is missing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with action and purpose. Every sentence provides essential information with no redundancy or waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description fully specifies the return structure (layout_tags, surface_syntax, example_markdown, limits). This is complete for a simple format-fetching tool with zero parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist (0 params, 100% schema coverage). Baseline is 4. The description adds value by listing the return fields (layout_tags, surface_syntax, etc.), which helps the agent interpret the output beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool fetches the authoritative Deckrun slide format specification, with specific verb 'Fetch' and resource 'slide format specification'. It distinguishes from sibling 'generate_slide_deck' by indicating this is a preliminary step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Call this first to learn... before writing slides', providing clear when to use. Does not explicitly state when not to use or mention alternatives aside from the implied sibling tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv1.1.1
    • First observedgenerate_slide_deck
    • First observedget_slide_format

TDQS

A4.4/5.0
Disambiguation5/5

The two tools have completely distinct purposes: one provides the format specification, the other generates the slide deck. No overlap in functionality.

Naming Consistency5/5

Both tool names follow a consistent verb_noun pattern: 'generate_slide_deck' and 'get_slide_format'. Conventions are uniform.

Tool Count3/5

With only 2 tools, the server feels minimal. While it covers the core workflow (get format, generate), the count is low for a full-featured service, but not extreme.

Completeness3/5

The tool set covers the essential flow: fetch format then generate. However, it lacks tools for managing or revising decks, leaving notable gaps for repeated use.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/agenticdecks/deckrun-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server