Tools MCP Server
Allows conversion of Confluence's ADF (Atlassian Document Format) content to Extended Markdown and vice versa, enabling AI agents to read, format, and modify Confluence pages programmatically.
Provides conversion between Markdown and ADF (Atlassian Document Format) for Jira, enabling AI agents to create and update Jira issues with rich text formatting.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Tools MCP ServerConvert this ADF to markdown"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tools MCP Server
An MCP (Model Context Protocol) server that exposes a collection of utility tools for AI agents. This modular server allows agents to perform complex operations through well-defined tool interfaces.
Features
Markdown Collection
ADF to Markdown: Convert Atlassian Document Format (ADF) to Extended Markdown
Markdown to ADF: Convert Extended Markdown to Atlassian Document Format
Table Formatting: Format tables with aligned columns for human readability
TOC Management: Generate and refresh table of contents based on document headings
Supports all ADF elements including panels, tables, media, mentions, code blocks, and more.
Related MCP server: PDF2MD MCP Server
Installation
npm install
npm run buildClaude Desktop Setup
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"toolkit": {
"command": "node",
"args": ["/absolute/path/to/tools-mcp-server/build/index.js"]
}
}
}Important: Use absolute paths, not relative paths.
After updating the configuration, fully quit Claude Desktop (Cmd+Q on macOS) and reopen it.
Claude Code Setup
Global Configuration (recommended)
Edit ~/.claude.json and add the server under the mcpServers key. This makes the server available in all projects without per-project approval prompts:
{
"mcpServers": {
"toolkit": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/tools-mcp-server/build/index.js"]
}
}
}Project Configuration
Alternatively, add a .mcp.json file to your project root for project-specific access:
{
"mcpServers": {
"toolkit": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/tools-mcp-server/build/index.js"]
}
}
}After adding the config, restart Claude Code (exit then claude).
Available Tools
Markdown Collection
Tool | Description | Parameters |
| Convert ADF JSON to Extended Markdown |
|
| Convert Extended Markdown to ADF JSON |
|
| Format tables with aligned columns |
|
| Refresh existing TOC to match current headings |
|
| Generate TOC from headings (without inserting) |
|
| Replace |
|
| Combined formatting (tables + /toc + TOC refresh) |
|
Usage Examples
Once configured, you can ask Claude:
"Convert this Confluence ADF to markdown"
"Transform this markdown into ADF format for Jira"
"Parse this ADF document and give me the markdown equivalent"
"Format the tables in this markdown file"
"Refresh the table of contents"
"Generate a TOC for this document"
Example: ADF to Markdown
{
"name": "markdown_adf_to_markdown",
"arguments": {
"adf": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{ "type": "text", "text": "Hello " },
{ "type": "text", "text": "World", "marks": [{ "type": "strong" }] }
]
}
]
}
}
}Returns: Hello **World**
Example: Markdown to ADF
{
"name": "markdown_markdown_to_adf",
"arguments": {
"markdown": "# Heading\n\nThis is a **bold** statement."
}
}Returns a complete ADF document structure.
Example: Format Tables
Input:
| Name | Age | City |
|---|---|---|
| Alice | 30 | New York |
| Bob | 25 | Los Angeles |Output:
| Name | Age | City |
| ----- | --- | ----------- |
| Alice | 30 | New York |
| Bob | 25 | Los Angeles |Example: Generate TOC
Input document with headings:
# Main Title
## Section 1
### Subsection 1.1
## Section 2Generated TOC:
- [Main Title](#main-title)
- [Section 1](#section-1)
- [Subsection 1.1](#subsection-11)
- [Section 2](#section-2)Example: Insert TOC with /toc Marker
Input:
# My Document
/toc
## Introduction
Content here...
## Conclusion
Final thoughts.Output:
# My Document
- [My Document](#my-document)
- [Introduction](#introduction)
- [Conclusion](#conclusion)
## Introduction
Content here...
## Conclusion
Final thoughts.Development
# Install dependencies
npm install
# Build TypeScript
npm run build
# Run the server (for testing)
npm start
# Format code
npm run format
# Lint code
npm run lintAdding New Tool Collections
Create a new folder under
src/tools/(e.g.,src/tools/json/)Define your tools array and handler function following the markdown pattern
Export
toolsarray andhandleToolfunctionImport and register in
src/index.ts
Testing with MCP Inspector
npx @modelcontextprotocol/inspector node build/index.jsLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/dongood/tools-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server