Telegraph MCP Server (Python)
Enables interaction with the Telegraph API (telegra.ph) to create, manage, edit, and export Telegraph pages. Supports account management, templates, Markdown/HTML formatting, and page backup functionality.
README
Telegraph MCP Server (Python)
A Model Context Protocol (MCP) server that provides tools for interacting with the Telegraph API (telegra.ph). This Python implementation allows Claude and other LLM clients to create, manage, and export Telegraph pages.
Features
- Account Management: Create accounts, update info, manage access tokens
- Page Operations: Create, edit, retrieve, and list pages
- Template System: Create pages using pre-built templates
- Export & Backup: Export pages to Markdown/HTML, backup entire accounts
- MCP Resources: Access Telegraph pages as MCP resources
- MCP Prompts: Guided workflows for common tasks
Installation
Using uvx (Recommended)
uvx telegraph-mcp-py
Using pip
pip install telegraph-mcp-py
From Source
git clone https://github.com/NehoraiHadad/telegraph-mcp
cd telegraph-mcp/telegraph-mcp-py
pip install -e .
Usage
With Claude Code
claude mcp add telegraph-py -- uvx telegraph-mcp-py
With Claude Desktop
Add to your Claude Desktop configuration (~/.config/claude/claude_desktop_config.json):
{
"mcpServers": {
"telegraph-py": {
"command": "uvx",
"args": ["telegraph-mcp-py"]
}
}
}
Or if installed via pip:
{
"mcpServers": {
"telegraph-py": {
"command": "telegraph-mcp-py"
}
}
}
Available Tools
Account Management
| Tool | Description |
|---|---|
telegraph_create_account |
Create a new Telegraph account |
telegraph_edit_account_info |
Update account information |
telegraph_get_account_info |
Get account details |
telegraph_revoke_access_token |
Revoke and regenerate access token |
Page Management
| Tool | Description |
|---|---|
telegraph_create_page |
Create a new page (supports HTML/Markdown) |
telegraph_edit_page |
Edit an existing page |
telegraph_get_page |
Get page by path |
telegraph_get_page_list |
List all pages for an account |
telegraph_get_views |
Get page view statistics |
Templates
| Tool | Description |
|---|---|
telegraph_list_templates |
List available templates |
telegraph_create_from_template |
Create page from template |
Export & Backup
| Tool | Description |
|---|---|
telegraph_export_page |
Export page to Markdown/HTML |
telegraph_backup_account |
Backup all account pages |
Resources
Access Telegraph pages directly as MCP resources:
telegraph://page/{path}
Example: telegraph://page/Sample-Page-12-15
Prompts
Pre-defined prompts for guided workflows:
create_blog_post- Guide for creating blog postscreate_documentation- Guide for creating documentationsummarize_page- Summarize an existing page
Examples
Creating a Page with Markdown
# Via MCP tool call
telegraph_create_page(
access_token="your-token",
title="My First Post",
content="# Hello World\n\nThis is my first Telegraph page!",
format="markdown"
)
Using Templates
telegraph_create_from_template(
access_token="your-token",
template="blog_post",
title="My Blog Post",
data={
"intro": "Welcome to my blog!",
"sections": [
{"heading": "Section 1", "content": "First section content"},
{"heading": "Section 2", "content": "Second section content"}
],
"conclusion": "Thanks for reading!"
}
)
Exporting a Page
telegraph_export_page(
path="Sample-Page-12-15",
format="markdown"
)
Development
Setup
cd telegraph-mcp-py
pip install -e ".[dev]"
Testing with MCP Inspector
npx @modelcontextprotocol/inspector uvx telegraph-mcp-py
Related Packages
- telegraph-mcp - TypeScript MCP server
- telegraph-api-py - Python Telegraph client
- telegraph-api-client - TypeScript Telegraph client
License
MIT License - see LICENSE for details.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。