weeek-mcp
MCP server for WEEEK Public API v1 enabling management of tasks, projects, boards, tags, custom fields, time tracking, and CRM entities.
README
WEEEK MCP
MCP-сервер для WEEEK Public API v1: задачи, проекты, доски, теги, кастомные поля, тайм-трекинг и CRM.
Сервер строит инструменты из официальной OpenAPI-спецификации WEEEK, поэтому названия и параметры эндпоинтов не переписаны вручную.
Возможности
- Workspace: информация о рабочем пространстве, участники, теги.
- Task Manager: portfolios, projects, boards, board columns, tasks, watchers, assignees, timers, time entries, attachments, custom fields.
- CRM: funnels, statuses, deals, organizations, contacts, currencies, связи между сущностями, custom fields.
- Генератор
npm run update:openapiподтягивает свежую спецификацию изdevelopers.weeek.net.
Установка
git clone https://github.com/maxwellviksna-stack/weeek-mcp.git
cd weeek-mcp
npm install
npm run build
Создайте токен в настройках workspace WEEEK, раздел API, и передайте его в окружение:
export WEEEK_API_TOKEN="your-token"
WEEEK_TOKEN тоже поддерживается, если такое имя уже используется в вашей конфигурации.
Подключение
Claude Desktop
{
"mcpServers": {
"weeek": {
"command": "node",
"args": ["/absolute/path/to/weeek-mcp/dist/server.js"],
"env": {
"WEEEK_API_TOKEN": "your-token"
}
}
}
}
Локальный запуск
WEEEK_API_TOKEN="your-token" npm start
Для разработки:
WEEEK_API_TOKEN="your-token" npm run dev
Инструменты
Все API-операции публикуются как отдельные MCP tools с префиксом weeek_.
Примеры:
weeek_get_workspace_infoweeek_get_project_listweeek_create_taskweeek_get_tasksweeek_complete_taskweeek_get_all_dealsweeek_create_a_contact
Есть служебный инструмент:
weeek_list_operations— поиск по доступным операциям, тегу или тексту.
Формат аргументов у сгенерированных инструментов одинаковый:
{
"path": { "id": 123 },
"query": { "search": "release" },
"body": { "title": "Prepare release notes" }
}
Для загрузки файлов используется files:
{
"path": { "task_id": 123 },
"files": [
{
"path": "/absolute/path/to/file.pdf",
"fieldName": "files[]"
}
]
}
Конфигурация
| Переменная | По умолчанию | Описание |
|---|---|---|
WEEEK_API_TOKEN |
обязательна | Bearer token из настроек workspace |
WEEEK_TOKEN |
optional | Алиас для WEEEK_API_TOKEN |
WEEEK_BASE_URL |
https://api.weeek.net/public/v1 |
Базовый URL API |
WEEEK_TIMEOUT_MS |
30000 |
Таймаут запроса |
Обновление API
npm run update:openapi
npm run build
Генератор берет текущий bundle документации WEEEK, находит модуль weeek.yaml-*.js, импортирует OpenAPI-объект и пересобирает src/generated/weeek-openapi.ts.
Проверка перед релизом
npm run update:openapi
npm run check
npm run build
npm pack --dry-run
Для проверки на реальном workspace:
WEEEK_API_TOKEN="your-token" npm run smoke:live
Smoke-тест поднимает MCP-сервер через stdio, проверяет список tools, делает read/write-запросы к Task Manager и CRM, а затем удаляет временные сущности с префиксом mcp-smoke-*.
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.