Tools MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| markdown_adf_to_markdownA | Convert Atlassian Document Format (ADF) to Extended Markdown. ADF is used by Atlassian products like Jira and Confluence. Supports all ADF elements including panels, tables, media, mentions, and more. |
| markdown_markdown_to_adfA | Convert Extended Markdown to Atlassian Document Format (ADF). Supports standard markdown plus ADF extensions like panels, expands, media placeholders, mentions, and status indicators. |
| markdown_format_tablesA | Format markdown tables for human readability. Calculates optimal column widths based on content and aligns all cells. Preserves column alignment markers (left, center, right). |
| markdown_refresh_tocA | Refresh an existing table of contents (TOC) in markdown to match current headings. Detects TOC by pattern (- text), regenerates anchors, and updates indentation. Returns unchanged if no TOC exists. |
| markdown_generate_tocA | Generate a table of contents from markdown headings. Returns TOC lines without inserting them. Use this to create a new TOC for a document that doesn't have one. |
| markdown_insert_tocA | Replace /toc markers in markdown with generated table of contents. Finds lines containing only '/toc' and replaces them with a TOC based on document headings. |
| markdown_formatA | Format markdown for human readability. Combines table formatting, /toc marker replacement, and TOC refresh in one operation. Use options to control which formatting is applied. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool has a distinct purpose: conversion between ADF and Markdown is directional, TOC tools are differentiated by generate/insert/refresh actions, and the format tool is explicitly a combined operation. No two tools have overlapping functionality.
All tool names follow a consistent pattern of 'markdown_' prefix followed by verb-oriented terms (e.g., format_tables, generate_toc). The conversion tools use a clear directional suffix (adf_to_markdown/markdown_to_adf), and all names are in lowercase snake_case.
Seven tools is a well-scoped set for a markdown utility server, covering conversion, formatting, and TOC management without unnecessary bloat or missing essentials.
The tool surface covers the full lifecycle of markdown manipulation: bidirectional ADF conversion, table formatting, TOC generation/insertion/refresh, and a combined formatter. No obvious gaps or dead ends for the stated domain.