CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
reassignai avatar

Reassign

reassignai/plugins
HTTPregistry active
Summary

Connects Claude to Reassign's circular 24-hour calendar API for ADHD-friendly time management. Instead of generic productivity advice, you get concrete schedule edits on a visual dial using research-backed methods for executive function. Ships as a Claude Code plugin, standalone skill, custom connector for Claude.ai and ChatGPT, or stdio MCP client via npx. The canonical skill lives in a single directory with references for ADHD methods, workflows, and scheduling taxonomy. Reach for this when you want AI-assisted day planning that manipulates an actual calendar interface rather than suggesting techniques in chat. Available via streamable-http at reassign.app/api/mcp or through the reassignai/plugins repo.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →

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

FormHow
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 skillnpx skills add reassignai/plugins
Claude.ai / ChatGPT connectorAdd 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:

TrainFilesWhat it tracks
pluginplugin.json, .claude-plugin/plugin.json, .claude-plugin/marketplace.json, SKILL.mdthe skill and its manifests
packagepackage.json, server.jsonthe 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.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Categories
AI & LLM ToolsProductivity & Office
Registryactive
TransportHTTP
UpdatedJun 9, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
app.toofi avatar
Toofi Dental Planning MCP

app.toofi/dental-planning

Agent-native dental planning MCP for plan drafts, presentations, and price estimates.
ajantoniou avatar
Uploadcheck

app.uploadcheck/uploadcheck

QC videos, podcasts, and clips before upload — timestamped flags with agent-ready repair prompts.
archimedes-market avatar
Mcp Archimedes

archimedes-market/mcp-archimedes

Discover verified deep-tech engineering bounties from any AI agent.
archonics avatar
Mcp Audit

archonics/mcp-audit

Free context-engineering audits for AI agents. BYOK Anthropic key. Top-3 findings per scan.
artificer avatar
lex-oracle

artificer/lex-oracle

Deterministic, citable legislative blueprints for Slovak and Czech law. Eliminates LLM hallucinations in regulated payroll, tax, garnishment, travel, and B2B computations.
arturogarrido avatar
Claudinho

arturogarrido/claudinho

Live 2026 World Cup scores, fixtures & standings for your AI agent. No keys. Unofficial fan project.