weeek-mcp
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., "@weeek-mcpCan you create a task to fix the login bug?"
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.
weeek-mcp
An MCP server for Weeek. It lets Claude Code and OpenAI Codex work with your task tracker in ordinary words — "what is on the board", "assign this to Anna and comment that the build is fixed" — instead of you switching to a browser to look it up and type it in.
Thirteen tools cover twenty-four API operations. They are curated rather than generated one per endpoint, which is what keeps the tool list small enough to carry in every request.
Requires Node 22.18 or newer.
Install
Claude Code
claude plugin marketplace add dsudomoin/weeek-mcp
claude plugin install weeek@dsudomoinCodex
codex plugin marketplace add dsudomoin/weeek-mcp
codex plugin add weeek@dsudomoinOr register it by hand in ~/.codex/config.toml:
[mcp_servers.weeek]
command = "npx"
args = ["-y", "@dsudomoin/weeek-mcp@0.1.0"]
[mcp_servers.weeek.env]
# Turns an unreachable registry into a one-second error instead of a 70-second hang.
npm_config_fetch_retries = "0"Codex fails the whole config file on one unrecognised key, taking every other MCP server with it, so copy the block rather than retyping it.
Installed once, run from disk
Both routes above fetch from npm each time the server starts. Install it instead if you work offline, sit behind a corporate proxy, or want the version to change only when you say so:
npm install -g @dsudomoin/weeek-mcp
claude mcp add weeek --scope user -- weeek-mcpRelated MCP server: ClickUp MCP Server
The token
Create one in Weeek under Settings → API, then give it to the server once, from your terminal:
weeek-mcp initIt asks for the token without showing it, checks it against Weeek before storing anything, and puts
it in your operating system's keychain — then tells you which store it used. Every client on the
machine finds it there. If you installed nothing, npx -y @dsudomoin/weeek-mcp init runs the same
wizard.
WEEEK_API_TOKEN in the environment always wins over the stored one, which is what makes
containers and CI work. Claude Code can also hold the token itself, through
/plugin configure weeek@dsudomoin.
On Linux with no session D-Bus — a container, an SSH session, a headless box — there is no keychain to put it in, so the token goes to a file that only you can read. The wizard names that file when it does, which is why the line it prints is worth reading.
The tools
Four that read:
Tool | |
| You, the workspace, its projects, members and tags. Every id starts here. |
| Finds tasks by project, board, assignee, tag, type, priority, text, date. |
| One task with its description as markdown and its comment thread. |
| The thread on its own, for paging back through a long one. |
Nine that change something:
Tool | |
| Creates a task. The only place a description can be set. |
| Title, priority, type, start and due dates, duration, tags. |
| Moves it to another board, another column, or both. |
| Completes or reopens, and says when a recurring task spawned another. |
| Adds and removes assignees and watchers. |
| Posts a comment or a reply. Markdown survives as written. |
| Downloads an attachment and returns the path it was saved to. |
| Attaches a local file to a task. |
| Deletes a comment permanently. |
Answers are shaped for reading, not raw API JSON: names instead of ids, markdown instead of HTML, and a sentence saying how to fetch the next page.
Three things Weeek does that will cost you work
Found by experiment, and each contradicts what you would reasonably assume.
A description can only be set when the task is created. Weeek accepts one on an update, answers success, and stores nothing. Write it at creation or not at all.
Updating tags replaces the whole list. There is no add-one endpoint. To add a tag, read the task's tags first and send them all back with the new one — otherwise every other tag is gone.
Comments cannot be edited. The API offers create and delete, nothing else.
Attaching files
Two tools touch your disk, and the paths come from the model — which has just been reading task descriptions and comments that other people wrote. Text like that can carry instructions, so the boundary is yours to draw and neither tool can widen it:
WEEEK_FILE_ROOT=/Users/you/work/weeek-filesUnset, both tools refuse every path, which is the safe default. Set, uploading can read any file
inside that directory — so choose one that holds nothing private and that nothing executes from.
$HOME is honoured and warned about; a filesystem root is refused outright.
Environment variables
Variable | |
| Overrides the stored token. |
| The one directory the attachment tools may touch. Unset by default. |
| Defaults to |
| Per request, defaults to |
Development
npm install
npm test # runs straight from the TypeScript sources
npm run check # tsc --noEmit
npm run build # esbuild → dist/server.mjs, the file npm publishessrc/generated/weeek-openapi.ts is a committed snapshot of Weeek's OpenAPI spec; refresh it with
npm run update:openapi, which downloads and executes code from their docs site.
Licence
MIT — see LICENSE. The published file is a bundle, so the licences of everything compiled into it travel with it in THIRD-PARTY-NOTICES.md.
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.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables Claude Code to query, create, and modify Dooray tasks via natural language.
- AlicenseAqualityDmaintenanceEnables natural language management of ClickUp workspaces, including task CRUD operations, task listing, and user profile retrieval via Claude Desktop.61MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants like Claude to create and manage projects, todos, priorities, and statuses through natural language, bridging the gap between AI and project management workflows.
- AlicenseAqualityCmaintenanceEnables AI coding agents to read and write WEEEK projects, boards, tasks, and comments directly, without context switching.121MIT
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/dsudomoin/weeek-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server