streamable-httpApache-2.0updated 25d ago
Reassign: a circular 24-hour day planner. One capability, five package forms, one canonical skill.
What can you do with reassign?
Reassign
Reassign: a circular 24-hour day planner. One capability, five package forms, one canonical skill.
Reassign plans, edits, and reviews your day on a circular 24-hour calendar. It applies ADHD-friendly time-management methods as concrete edits to the dial, not advice recited back at you. The same scheduling capability ships in several package forms, all backed by one canonical skill and the Reassign MCP.
Install
| Form | How |
|---|---|
| Claude Code plugin | /plugin marketplace add reassignai/plugins ā /plugin install reassign@reassign |
| Agent Plugin (VS Code, Cursor, Copilot, Codex, Kiro) | Install from source with the repo URL ā e.g. VS Code's Chat: Install Plugin From Source ā https://github.com/reassignai/plugins |
| Standalone skill | npx skills add reassignai/plugins |
| Claude.ai / ChatGPT connector | Add a custom connector pointing at https://reassign.app/api/mcp |
| npm (any stdio MCP client) | npx -y @reassign/mcp |
What's inside
plugins/ ā repo root = plugin root
āāā plugin.json ā Agent Plugins 1.0.0 manifest
āāā mcp.json ā Agent Plugins MCP config (streamable-http)
āāā .claude-plugin/
ā āāā plugin.json ā Claude Code manifest
ā āāā marketplace.json
āāā .mcp.json ā Claude Code MCP config (type "http")
āāā skills/
ā āāā reassign-scheduling/ ā canonical skill (every form, zero copy)
ā āāā SKILL.md
ā āāā references/
ā āāā adhd-methods.md
ā āāā workflows.md
ā āāā taxonomy.md
ā āāā calendars.md ā connected-calendar sync, event kinds, mirroring
ā āāā reflection.md ā reviewing a past day: marks + adherence
ā āāā limits.md ā what each plan allows; reading a refusal code
āāā server.json ā Official MCP Registry entry
āāā package.json ā npm client shim
āāā bin/reassign-mcp.js
āāā scripts/
ā āāā build.sh ā validates manifests + version lockstep
ā āāā version.mjs ā reads/sets the two version trains
āāā .github/workflows/
ā āāā publish-registry.yml
ā āāā publish-npm.yml
āāā README.md
āāā LICENSE
The skills/reassign-scheduling/ directory is the single source of truth: every
package form consumes it in place, with no copying.
Two manifests, on purpose
The root plugin.json/mcp.json pair is Agent Plugins
1.0.0; .claude-plugin/plugin.json + .mcp.json is
the Claude Code format. Clients auto-detect by manifest path and read exactly
one pair, so both ship side by side. They are not copies of each other ā the
same endpoint is "type": "streamable-http" under the spec and "type": "http"
for Claude Code, so scripts/build.sh checks each file's transport vocabulary
separately ā and cross-checks that the two still name the same servers at the
same URLs, since a copy-paste and a one-sided URL move are both silent breaks.
Versions
Two independent trains, both checked by scripts/build.sh:
| Train | Files | What it tracks |
|---|---|---|
plugin |
plugin.json, .claude-plugin/plugin.json, .claude-plugin/marketplace.json, SKILL.md |
the skill and its manifests |
package |
package.json, server.json |
the npm shim + registry entry, released on a v* tag |
node scripts/version.mjs # print both
node scripts/version.mjs check # exit 1 on drift
node scripts/version.mjs set plugin 1.9.0
Links
- Website: reassign.ai
- MCP endpoint:
https://reassign.app/api/mcp
License
Apache-2.0 Ā© Pogled Naprej d.o.o.
Install
Add reassign to your client. Pick the one you use.
claude mcp add --transport http reassign https://reassign.app/api/mcpcodex mcp add reassign --url https://reassign.app/api/mcp{
"mcpServers": {
"reassign": {
"url": "https://reassign.app/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"reassign": {
"type": "http",
"url": "https://reassign.app/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"reassign": {
"url": "https://reassign.app/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"reassign": {
"serverUrl": "https://reassign.app/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance25/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 18 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.0.3Latest | Jul 8, 2026 |
| 1.0.2 | Jul 8, 2026 |
| 1.0.1 | Jun 12, 2026 |
| 1.0.0 | Jun 9, 2026 |