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
isucorp-taimiralain avatar

Stackguide Mcp

isucorp-taimiralain/stackguide-mcp
STDIOregistry active
Summary

This server brings execution-first TDD workflow to your AI assistant, not just context loading. It scaffolds `.stackguide` config with stack-aware defaults for React, Next.js, Django, Rails, and more, then exposes 16 tools including `agent` for active ticket intake from Jira, vertical-slice planning, test orchestration, and PR creation. The workflow tools connect GitHub, GitLab, and Jira for branch checks, commit parsing, and CI status. You also get code health scoring, AST-based review, and custom rule management. Version 4.x added the active agent executor and hardened local artifact persistence with integrity validation. Reach for this when you want your assistant to actually run tests, create tickets from strict templates, and manage delivery flow, not just suggest code changes.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
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 →
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 →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
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 →
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 →

StackGuide MCP Server

Dynamic context + active engineering workflow for AI coding assistants in Cursor, VS Code, and other MCP clients.

npm version license mcp registry

What It Does

@stackguide/mcp-server helps teams standardize implementation quality with:

  • project-aware rule/context loading
  • code review and health scoring
  • auto-detected setup and stack scaffolding
  • active agent workflow that executes real work (intake, plan, verify, release)
  • adaptive TDD preferences per project (model + token profile)
  • Jira ticket creation from strict MAIN DESCRIPTION templates
  • tracker + VCS + test orchestration for delivery flow

This server is built for real team usage, not just prompt templates.

What's New In v4.x

  • Added active agent tool (execution-first workflow).
  • init now generates .stackguide/config.json automatically.
  • Added tracker service support for GitHub, GitLab, and Jira.
  • Added VCS service for branch checks, commit parsing, CI status, and PR/MR creation.
  • Added test runner service for structured test/lint/build execution.
  • Updated TDD prompts to use active tool calls instead of large passive markdown payloads.
  • Hardened local persistence:
    • .stackguide artifacts removed from version control
    • repository guard blocks accidental tracking of local artifacts
    • cache and health history include integrity validation and safer writes

Install By IDE

Cursor

  • File (workspace): .cursor/mcp.json
  • File (global): ~/.cursor/mcp.json
{
  "mcpServers": {
    "stackguide": {
      "command": "npx",
      "args": ["-y", "@stackguide/mcp-server@latest"]
    }
  }
}

JetBrains (IntelliJ, WebStorm, PhpStorm, etc.)

  • Open Settings | Tools | AI Assistant | Model Context Protocol (MCP).
  • Click Add and paste JSON config.
  • Recommended: set it as Project-level unless you want global scope.
{
  "mcpServers": {
    "stackguide": {
      "command": "npx",
      "args": ["-y", "@stackguide/mcp-server@latest"]
    }
  }
}

VS Code

  • Requirement: GitHub Copilot Chat with MCP enabled.
  • File (workspace): .vscode/mcp.json
  • VS Code MCP schema uses servers as root key.
{
  "servers": {
    "stackguide": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@stackguide/mcp-server@latest"]
    }
  }
}

Visual Studio (Windows, 2022 17.14+ / 2026+)

  • Enable GitHub Copilot Agent mode.
  • Supported config locations include:
    • %USERPROFILE%\\.mcp.json (global)
    • <solution>\\.mcp.json (repo-scoped)
    • <solution>\\.vs\\mcp.json (solution/user-scoped)
  • Visual Studio MCP schema uses servers as root key.
{
  "servers": {
    "stackguide": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@stackguide/mcp-server@latest"]
    }
  }
}

How To Use (Any IDE)

  1. Restart the IDE after adding the MCP configuration.
  2. Open AI chat in agent/tool mode.
  3. Call setup to detect project context.
  4. Call init action:"full" to scaffold .stackguide/ and defaults.
  5. Use agent actions (intake, create_ticket, plan, verify, release) for delivery flow.

Quick Start

  1. Configure your project:
setup type:"react-typescript" enableAdaptiveTdd:true model:"gpt-5" integrations:["jira","github"] tokenMode:"compact"
init action:"full" model:"gpt-5" tokenMode:"compact" integrations:["jira","github"] mcpSyncTargets:["cursor","root"] applyMcpTemplates:true
  1. Check generated setup:
init action:"status"
agent action:"status"
  1. Run active TDD workflow:
agent action:"intake" ticket:"PROJ-123"
agent action:"create_ticket" mainDescription:"<MAIN DESCRIPTION>" projectKey:"PROJ"
agent action:"plan" brief:"<brief-from-intake>"
agent action:"verify"
agent action:"release" version:"v1.2.0"

Tools (16)

Core

  • setup: configure StackGuide context for project type
  • context: show currently loaded context
  • rules: list/search/get/select rule sets
  • knowledge: list/search/get knowledge files
  • review: analyze files/URLs/project code quality

Utility

  • cursor: browse/import community rules
  • docs: fetch/search/list documentation
  • config: save/load/export/import configurations
  • custom_rule: create/update/delete/list project custom rules
  • help: usage help by topic

Advanced

  • generate: boilerplate generation (component/hook/service/test/api/model/util)
  • health: project health score and recommendations
  • analyze: project intelligence (structure/config/dependency/generate/apply)

Workflow

  • workflow: lazy-load raw workflow assets (agents/skills/hooks/commands)
  • init: scaffold .stackguide with stack-aware defaults
  • agent: active workflow executor (status, intake, create_ticket, plan, verify, release)

Active Workflow Details

agent action:"intake"

  • reads ticket from configured tracker
  • returns normalized brief + gaps
  • proposes branch name convention
  • can optionally create a Jira ticket first (createFromDescription:true)

agent action:"create_ticket"

  • creates Jira issues using strict MAIN DESCRIPTION format
  • uses project defaults from .stackguide/config.json (projectKey, issueType)
  • derives summary from first line of MAIN DESCRIPTION when omitted

agent action:"plan"

  • inspects conventions + project shape
  • creates vertical-slice plan
  • returns exactly 3 target tests in structured format

agent action:"verify"

  • executes configured tests/lint/build per layer
  • checks branch naming + commit convention + TDD test budget
  • returns blocker list and final pass/fail report

agent action:"release"

  • checks CI status
  • parses commits since last tag
  • suggests semver impact (major / minor / patch)
  • can create tag and PR/MR (when enabled)

Local Data And Security

init generates:

  • .stackguide/config.json (project workflow config)

Runtime/local artifacts:

  • .stackguide/analysis-cache.json
  • .stackguide/health-history.json

These are machine-local and must not be committed.

Repository Guard

pnpm lint includes:

pnpm run guard:repo

The guard fails if .stackguide artifacts are tracked.

Integrity Hardening

Cache/history persistence includes:

  • boundary/symlink checks
  • file size and entry limits
  • atomic write strategy
  • checksum validation
  • optional HMAC signature using:
STACKGUIDE_INTEGRITY_KEY=<long-random-secret>

For teams, configure STACKGUIDE_INTEGRITY_KEY in local/dev and CI environments for stronger tamper resistance.

Supported Stacks

python-django, python-fastapi, python-flask, react-node, react-typescript, vue-node, nextjs, express, nestjs, laravel, rails, golang, rust, custom.

Development

Use pnpm for all commands.

pnpm install
pnpm lint
pnpm test
pnpm build
pnpm dev

Release And Version Policy

  • Current secure baseline: 4.1.2+
  • Versions from 3.0.0 up to 4.1.1 are deprecated in npm due to local artifact hygiene issues.
  • Use the latest 4.x release in all environments.

Registry Identifiers

  • npm package: @stackguide/mcp-server
  • MCP Registry server: io.github.isucorp-taimiralain/stackguide-mcp

License

GPL-3.0

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
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 →
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 →
Categories
Automation & Workflows
Registryactive
Package@stackguide/mcp-server
TransportSTDIO
UpdatedApr 24, 2026
View on GitHub

Related Automation & Workflows MCP Servers

View all →
jack1590 avatar
Rokumcp

jack1590/rokumcp

MCP server for Roku device automation — deploy, ECP control, screenshots, and debug console
jackyzhang69 avatar
FormBro

jackyzhang69/formbro

MCP server for FormBro Canadian immigration application automation.
james-h-millett avatar
Drug Landscape

james-h-millett/drug-landscape

**Pharma intelligence as a Claude / Cursor / Continue / Zed / Cline / Windsurf tool.** Drug Landscape exposes 11 MCP tools over `https://druglandscape.com/api/mcp` covering: - **156,000+ drugs** — FDA + EMA + MHRA + PMDA approved, plus pipeline candidates - **480,000+ clinical trials** — from ClinicalTrials.gov - **915 pharmaceutical companies** — with SEC ticker + pipeline - **61 disease areas** — treatment landscape + guidelines ### Tools - `lookup_drug` — full profile by brand, generic, or slug - `lookup_disease` — treatment landscape for any disease - `lookup_company` — company + pipeline + ticker - `lookup_trial` — trial by NCT ID - `search` — global semantic search - `compare_drugs` — side-by-side drug comparison - `browse_drugs` — filter by phase, area, class, target - `get_pipeline` — full company pipeline - `get_drugs_in_class` — pharmacologic class lookup (PD-1, GLP-1, JAK…) - `get_drugs_for_target` — molecular target lookup (EGFR, HER2, PCSK9…) - `define` — pharma glossary (NDA, PDUFA, ORR, QALY, ADC…) ### Why use it Every response includes the canonical URL of the entity (e.g. `https://druglandscape.com/drug/keytruda`). Cite that URL and the LLM has already linked to underlying primary sources — FDA label, EPAR, NICE TA, ClinicalTrials.gov, SEC filing, USPTO patent, PubMed paper. Free with no API key. Reasonable rate limits via Vercel edge cache. ### Example prompts - "What's Keytruda's mechanism and approved indications?" - "Compare Ozempic and Mounjaro side-by-side." - "List every Phase 3 PD-1 inhibitor in oncology." - "What's in Eli Lilly's pipeline for obesity?" ### Resources - Website: [druglandscape.com](https://druglandscape.com) - API docs: [druglandscape.com/api-docs](https://druglandscape.com/api-docs) - Source: [github.com/JamesMildog/drugs-landscape](https://github.com/JamesMildog/drugs-landscape)
james-h-millett avatar
Drug Landscape

james-h-millett/drug-landscape-b71fbc77

**Pharma intelligence as a Claude / Cursor / Continue / Zed / Cline / Windsurf tool.** Drug Landscape exposes 11 MCP tools over `https://druglandscape.com/api/mcp` covering: - **156,000+ drugs** — FDA + EMA + MHRA + PMDA approved, plus pipeline candidates - **480,000+ clinical trials** — from ClinicalTrials.gov - **915 pharmaceutical companies** — with SEC ticker + pipeline - **61 disease areas** — treatment landscape + guidelines ### Tools - `lookup_drug` — full profile by brand, generic, or slug - `lookup_disease` — treatment landscape for any disease - `lookup_company` — company + pipeline + ticker - `lookup_trial` — trial by NCT ID - `search` — global semantic search - `compare_drugs` — side-by-side drug comparison - `browse_drugs` — filter by phase, area, class, target - `get_pipeline` — full company pipeline - `get_drugs_in_class` — pharmacologic class lookup (PD-1, GLP-1, JAK…) - `get_drugs_for_target` — molecular target lookup (EGFR, HER2, PCSK9…) - `define` — pharma glossary (NDA, PDUFA, ORR, QALY, ADC…) ### Why use it Every response includes the canonical URL of the entity (e.g. `https://druglandscape.com/drug/keytruda`). Cite that URL and the LLM has already linked to underlying primary sources — FDA label, EPAR, NICE TA, ClinicalTrials.gov, SEC filing, USPTO patent, PubMed paper. Free with no API key. Reasonable rate limits via Vercel edge cache. ### Example prompts - "What's Keytruda's mechanism and approved indications?" - "Compare Ozempic and Mounjaro side-by-side." - "List every Phase 3 PD-1 inhibitor in oncology." - "What's in Eli Lilly's pipeline for obesity?" ### Resources - Website: [druglandscape.com](https://druglandscape.com) - API docs: [druglandscape.com/api-docs](https://druglandscape.com/api-docs) - Source: [github.com/JamesMildog/drugs-landscape](https://github.com/JamesMildog/drugs-landscape)
jayquan-mccleary avatar
ZenLink MCP

jayquan-mccleary/zenlink-mcp

Browser automation for MCP clients via Zen Browser. Parallel multi-tab, content extraction.
jeenyjai avatar
MCP Test Utils

jeenyjai/mcp-test-utils

Desktop UI automation for AI agents: screenshots, windows, mouse, keyboard, UI Automation, OCR