twzrd-mcp
v0.1.3
io.github.twzrd-sol/twzrd-mcp
Auto-pay MCP for the TWZRD Trust API: free preflight + x402-paid Solana trust intel
共 22,593 个资源
v0.1.3
io.github.twzrd-sol/twzrd-mcp
Auto-pay MCP for the TWZRD Trust API: free preflight + x402-paid Solana trust intel
v1.0.0
io.pickrate/pickrate
Whether AI agents pick a dev tool over competitors: Pick Rate, leaderboards, and reports.
v0.3.8
io.github.dundas/thinkrun
Browser control + session recording MCP for AI coding agents (Claude Code, Cursor) — real Chrome.
v0.1.1
io.github.rjn32s/osint-mcp
26 free OSINT tools as MCP tools for AI agents. Auto-installs everything on first run.
v0.2.0
io.github.AIops-tools/proxmox-aiops
Governed Proxmox VE VM/container ops — 23 MCP tools with audit, budget, undo & risk-tier guards.
v0.2.0
io.github.AIops-tools/network-aiops
Governed network device ops (NAPALM) — 28 MCP tools with audit/undo.
v0.2.0
io.github.AIops-tools/veeam-aiops
Governed Veeam Backup & Replication ops — 12 MCP tools with audit, budget, undo guards.
v0.2.0
io.github.AIops-tools/k8s-aiops
Governed Kubernetes ops — 51 MCP tools with audit, budget, undo, risk-tier guards.
v0.2.20
io.github.Furowu/brokre
AI-safe credential broker for MCP — run saved SSH/MySQL/psql aliases; passwords never reach AI.
v1.1.15
io.github.Vorim-AI-Labs/vorim-mcp-server
AI agent identity, permissions, trust scores, and tamper-evident audit trails via Vorim AI
v1.7.2
io.github.team-earth/datagraph
Urban intelligence knowledge graph. Structured locality data for civic problem-solving.
v1.0.0
com.vouchedpros/mcp
Local US home-service pricing, providers ranked by the Vouched Score, rebates, and glossary.
v0.6.4
io.github.sseshachala/agent-booster
Cut AI agent token costs 5-15x — routes only relevant code symbols instead of full files.
v0.6.10
io.github.sseshachala/conduct-cli
List agents, trigger workflows, and enforce team AI policies with ConductGuard.
v1.14.0
io.github.ObscuritySRL/umbriel
See and drive a whole Windows machine from Bun — apps, input, screen, OCR, registry, OS — via MCP.
v1.0.0
biz.soeru/soeru
Write personalized, on-brand thank-you and packing-slip messages for your EC orders.
v0.1.0
io.github.Kevinx702/legalcite
Verify legal case citations against real court records; flag fake/hallucinated cites.
v0.1.1
io.github.Kevinx702/agentcite
Fabrication-free, DOI-backed citations for AI agents — real openAlex sources, never hallucinated.
vmain
io.github.ruvnet/ruflo/security-scan
Run full security scans on the codebase using Ruflo security tools. Use when reviewing PRs for security regressions, auditing auth/input-handling code, before production deploys, or when the user asks for a security check at quick/standard/deep depth.
vmain
io.github.bdfinst/agentic-dev-team/docker-image-audit
Audit Docker images and Dockerfiles for security vulnerabilities, bloat, and best-practice violations using hadolint, Trivy, and Grype. Produces a structured severity report with actionable fixes. Use this skill whenever the user wants to check a Docker image for security issues, scan a container for vulnerabilities, audit a Dockerfile, harden a Docker image, reduce image size, minimize attack surface, check for CVEs in a container, or says things like "is this Dockerfile secure?", "scan my image", "check my container for vulnerabilities", "how can I make this image smaller?", "audit my Docker setup", or "harden this container". Also trigger when the user has just created or modified a Dockerfile and wants validation before shipping it.
vmain
io.github.bdfinst/agentic-dev-team/docker-image-create
Generate production-ready Dockerfiles from project source code. Detects language/framework automatically and produces multi-stage builds with minimal, distroless, or slim base images. Use this skill whenever the user wants to containerize an application, create a Dockerfile, dockerize a project, build a Docker image, or says things like "make this run in Docker", "create a container for this app", "I need a Dockerfile", "package this for deployment", or "containerize this service". Also trigger when the user has an existing Dockerfile and wants it rewritten for production use, or when they ask about Docker best practices for their project.
vmain
io.github.TheDecipherist/claude-code-mastery-project-starter-kit/css-structure
Where CSS should live. Claude defaults to dumping a giant <style> block or scattering style="..." attributes instead of putting styles in a .css file and linking it. Use when building or editing a web page or component, or whenever about to write a style attribute or an embedded style block. Covers defaulting to an external stylesheet, why inline style attributes are a trap, and the few cases where inline is actually correct (dynamic values via custom properties, critical CSS, single-file artifacts, email).
vmain
io.github.TheDecipherist/claude-code-mastery-project-starter-kit/docker-swarm
Production Docker Swarm deployment rules: what changes when a compose file goes from a single node to a multi-node Swarm. Use when writing or reviewing a stack file, a deploy block, an overlay network, or anything deployed with docker stack deploy. Covers the directives Swarm silently ignores, why fixed IPs and bind mounts break, the deploy orchestration block, and the exit-code and healthcheck discipline that Swarm self-healing depends on. Complements the docker skill, which covers writing the image and compose file itself.
vmain
io.github.TheDecipherist/claude-code-mastery-project-starter-kit/docker
Production Docker best practices for writing Dockerfiles, Compose files, and Swarm stacks. Use whenever creating or editing a Dockerfile, a docker-compose / compose.yaml, or a stack file, or building and optimizing an image. Fixes the handful of things Claude reliably gets wrong: multi-stage builds, layer-cache ordering, exec-form ENTRYPOINT for correct signals and exit codes, init:true, keeping secrets and env out of the image, non-root users, and healthchecks. From production, not defaults.