بنقرة واحدة
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 ويثبّتها لك.
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)
استنادا إلى تصنيف SOC المهني
| 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.