ワンクリックで
building-an-mcp-server
Author or connect a Model Context Protocol server so an agent gains new tools
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Author or connect a Model Context Protocol server so an agent gains new tools
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Catch bad React in your changes — run react-doctor's deterministic scan and fix what it flags
Run a verifiable security scan (vulns, secrets, misconfig) over code you wrote or deps you added, before calling the work done
Drive a real browser verifiably — navigate, snapshot, act BY INDEX, extract; every step provable
Run multi-agent work as ONE provable causal DAG — parallel subagents, an Orchestrate graph, an immutable spec-seed
Build automated pipelines that gate merges and ship reliably
Build reliable, resumable data connectors and transforms (ETL)
| name | building-an-mcp-server |
| description | Author or connect a Model Context Protocol server so an agent gains new tools |
| version | 1 |
| trust | built-in |
MCP is how an agent gains capabilities it doesn't have natively (a service, a database, an internal API). korgex is MCP-native — it can both consume servers and act as one.
Connecting an existing server (most common)
korgex mcp catalog to see curated presets; korgex mcp add <alias> [--global]
to add one. For a custom server: --command <cmd> --args "…" (stdio) or
--url <url> --header "Authorization: Bearer ${TOKEN}" (remote).${VAR} in the config — never inline a token.server__tool.Authoring a server
inputSchema. Keep each tool single-purpose.initialize → tools/list → tools/call over
JSON-RPC (stdio or HTTP). Return results as content blocks; surface tool faults
as an error result, not a crash.korgex mcp add and confirm tools list + a sample call work.