Tilda MCP Server
Enables managing Tilda projects, pages, and exports via the Tilda API with 7 tools. Supports stdio and HTTP modes.
README
@theyahia/tilda-mcp
MCP-сервер для Tilda API — проекты, страницы, экспорт. 7 инструментов. Stdio + HTTP.
Часть серии Russian API MCP (50 серверов) by @theYahia.
Установка
Claude Desktop
{
"mcpServers": {
"tilda": {
"command": "npx",
"args": ["-y", "@theyahia/tilda-mcp"],
"env": { "TILDA_PUBLIC_KEY": "your-public-key", "TILDA_SECRET_KEY": "your-secret-key" }
}
}
}
Claude Code
claude mcp add tilda -e TILDA_PUBLIC_KEY=your-public-key -e TILDA_SECRET_KEY=your-secret-key -- npx -y @theyahia/tilda-mcp
VS Code / Cursor
{ "servers": { "tilda": { "command": "npx", "args": ["-y", "@theyahia/tilda-mcp"], "env": { "TILDA_PUBLIC_KEY": "your-public-key", "TILDA_SECRET_KEY": "your-secret-key" } } } }
Streamable HTTP
TILDA_PUBLIC_KEY=xxx TILDA_SECRET_KEY=yyy npx @theyahia/tilda-mcp --http --port 3001
# Endpoint: http://localhost:3001/mcp (stateless, CORS включён)
# Health: http://localhost:3001/health → {"status":"ok","tools":7}
HTTP-режим работает в stateless-режиме: на каждый POST создаётся свежий сервер+транспорт (подходит для чистой API-обёртки, поддерживает несколько клиентов без коллизий сессий). Принимает POST/OPTIONS на /mcp; прочие методы → 405.
Smithery
npx @smithery/cli install @theyahia/tilda-mcp
Требуется
TILDA_PUBLIC_KEYиTILDA_SECRET_KEY. Получите в настройках аккаунта Tilda.
Инструменты (7)
Полное покрытие всех 7 методов Tilda API.
| Инструмент | Метод API | Описание |
|---|---|---|
get_projects |
getprojectslist |
Список проектов |
get_project_info |
getprojectinfo |
Информация о проекте (домен, настройки экспорта). Опц. webconfig=htaccess|nginx → пример конфига веб-сервера |
get_pages |
getpageslist |
Список страниц проекта |
get_page |
getpagefull |
Полная страница (HTML c <head>, CSS, JS; ссылки на Tilda CDN) |
get_page_body |
getpage |
Только тело страницы (HTML без <head>; ссылки на CDN) — для быстрого чтения/preview |
get_page_export |
getpagefullexport |
Экспорт полной страницы с локализованными ассетами {from,to} — для самостоятельного хостинга |
get_page_export_body |
getpageexport |
Экспорт тела страницы с локализованными ассетами — для вставки в свой шаблон/CMS |
Экономия контекста: инструменты страниц (get_page*) принимают опц. metadata_only: true — вернуть только метаданные без html/css/js (полезно для больших страниц).
Экспорт всего проекта: отдельного метода нет — получите get_pages, затем по каждому id вызовите get_page_export (или get_page_export_body).
Лимит Tilda API: 150 запросов в час. Клиент делает ретраи с экспоненциальной задержкой и учитывает заголовок
Retry-After.
Безопасность: Tilda API принимает ключи только как query-параметры (
publickey/secretkey) — это особенность самого API. Сервер не логирует URL с ключами; держите ключи в env, не передавайте их в незашифрованные логи/прокси.
Скиллы
| Скилл | Триггер |
|---|---|
/skill-get-pages |
Покажи все страницы сайта |
/skill-export-page |
Экспортируй страницу |
Примеры
Покажи мои проекты в Tilda
Информация о проекте 12345 с конфигом nginx
Список страниц проекта 12345
Покажи содержимое страницы 67890
Покажи только метаданные страницы 67890
Экспортируй страницу 67890 для своего хостинга
Экспортируй тело страницы 67890 для вставки в шаблон
Лицензия
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.