cyanheads

4,137 mods across 126 repositories, 2.5k stars between them.

orchestrations

73

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Pick and run a multi-phase workflow that chains foundational task skills (git-wrapup, release-and-publish, maintenance, field-test, setup, etc.) end-to-end. Routes user intent to a workflow file under workflows/ — greenfield builds, maintenance + release, field-test + fix, or known-work + release. Single source for…

148 12d ago A 159 tokens copy · 100% Apache-2.0

polish-docs-meta

74

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Finalize documentation and project metadata for a ship-ready MCP server. Use after implementation is complete, tests pass, and devcheck is clean. Safe to run at any stage — each step checks current state and only acts on what still needs work.

148 12d ago A 54 tokens copy · 100% Apache-2.0

release-and-publish

75

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…

148 12d ago A 112 tokens copy · 100% Apache-2.0

cyanheads/mcp-ts-core

Skill Claude CodeCodex

File a bug or feature request against @cyanheads/mcp-ts-core when you hit a framework issue. Use when a builder, utility, context method, or config behaves contrary to the documented API — not for server-specific application bugs.

148 12d ago A 52 tokens copy · 100% Apache-2.0

report-issue-local

77

cyanheads/mcp-ts-core

Skill Claude CodeCodex

File a bug or feature request against this MCP server's own repo. Use for server-specific issues — tool logic, service integrations, config problems, or domain bugs that aren't caused by the framework.

148 12d ago A 44 tokens copy · 100% Apache-2.0

security-pass

78

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Review an MCP server for common security gaps: LLM-facing surfaces as injection vector (tools, resources, prompts, descriptions), scope blast radius, destructive ops without consent, upstream auth shape, input sinks (URL / path / roots / shell / schema strictness / ReDoS), tenant isolation, leakage through errors and…

148 12d ago A 118 tokens copy · 100% Apache-2.0

setup

79

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Post-init orientation for an MCP server built on @cyanheads/mcp-ts-core. Use after running @cyanheads/mcp-ts-core init to understand the project structure, conventions, and skill sync model. Also use when onboarding to an existing project for the first time.

148 12d ago A 58 tokens copy · 100% Apache-2.0

techniques

80

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Catalog of reusable response- and data-shaping techniques for MCP servers built on @cyanheads/mcp-ts-core — overflow handling, payload shaping, retrieval patterns. Use when a tool's payload is too large, awkwardly shaped, or expensive to retrieve and you want a proven pattern instead of inventing one. Each technique…

148 12d ago A 79 tokens copy · 100% Apache-2.0

tool-defs-analysis

81

cyanheads/mcp-ts-core

Skill Claude CodeCodex

Read-only audit of MCP definition language across an existing surface — tools, resources, prompts, server instructions. Walks every definition file and checks 16 categories the LLM reads to decide whether and how to call: voice & tense, internal leaks, audience leaks, defaults, recovery hints, field descriptions…

148 12d ago A 177 tokens copy · 100% Apache-2.0

mcp-ts-core

83

cyanheads/mcp-ts-core

MCP server Claude CodeCodexCursor +2

Agent-native TypeScript framework for building MCP servers with declarative definitions. Runs locally from the @cyanheads/mcp-ts-core npm package. Needs 1 environment variable to run.

148 12d ago A tokens not measured original Apache-2.0

pubmed-mcp-server

84

cyanheads/pubmed-mcp-server

Plugin Claude Code

Search PubMed/Europe PMC, fetch articles and full text (PMC/EPMC/Unpaywall), citations, MeSH terms.

142 +1 11d ago A tokens not measured original Apache-2.0

cyanheads/pubmed-mcp-server

Instructions file CodexOpenCode

Instructions for cyanheads/pubmed-mcp-server, covering agent protocol, what's next?, core rules, patterns and tool.

142 +1 11d ago A 6,291 tokens copy · 72% Apache-2.0

add-app-tool

87

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Scaffold an MCP App tool + UI resource pair. Use when the user asks to add a tool with interactive UI, create an MCP App, or build a visual/interactive tool.

142 +1 11d ago A 41 tokens copy · 100% Apache-2.0

add-prompt

88

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Scaffold a new MCP prompt template. Use when the user asks to add a prompt, create a reusable message template, or define a prompt for LLM interactions.

142 +1 11d ago A 37 tokens copy · 100% Apache-2.0

add-resource

89

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Scaffold a new MCP resource definition. Use when the user asks to add a resource, expose data via URI, or create a readable endpoint.

142 +1 11d ago A 32 tokens copy · 100% Apache-2.0

add-service

90

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Scaffold a new service integration. Use when the user asks to add a service, integrate an external API, or create a reusable domain module with its own initialization and state.

142 +1 11d ago A 38 tokens copy · 100% Apache-2.0

add-test

91

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Scaffold a test file for an existing tool, resource, or service. Use when the user asks to add tests, improve coverage, or when a definition exists without a matching test file.

142 +1 11d ago A 41 tokens copy · 100% Apache-2.0

add-tool

92

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Scaffold a new MCP tool definition. Use when the user asks to add a tool, create a new tool, or implement a new capability for the server.

142 +1 11d ago A 35 tokens copy · 100% Apache-2.0

api-auth

93

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Authentication, authorization, and multi-tenancy patterns for @cyanheads/mcp-ts-core. Use when implementing auth scopes on tools/resources, configuring auth modes (none/jwt/oauth), working with JWT/OAuth env vars, or understanding how tenantId flows through ctx.state.

142 +1 11d ago A 58 tokens copy · 100% Apache-2.0

api-canvas

94

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

DataCanvas primitive reference — a Tier 3 SQL/analytical workspace for tabular MCP servers, backed by DuckDB. Use when registering tables from upstream APIs, running ad-hoc SQL across them, and exporting results. Covers the acquire → register → query → export flow, per-table TTL, the token-sharing pattern for…

142 +1 11d ago A 85 tokens copy · 100% Apache-2.0

api-config

95

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Reference for core and server configuration in @cyanheads/mcp-ts-core. Covers env var tables with defaults, priority order, server-specific Zod schema pattern, and Workers lazy-parsing requirement.

142 +1 11d ago A 43 tokens copy · 100% Apache-2.0

api-context

96

cyanheads/pubmed-mcp-server

Skill Claude CodeCodex

Canonical reference for the unified Context object passed to every tool and resource handler in @cyanheads/mcp-ts-core. Covers the full interface, its RequestContext base, all sub-APIs (ctx.log, ctx.state, ctx.requestInput, ctx.inputs, ctx.enrich, ctx.content), and when to use each.

142 +1 11d ago A 79 tokens copy · 100% Apache-2.0