ワンクリックで
kailash-mcp
Kailash MCP — server/client/tools/resources/auth/transports for AI agent integration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Kailash MCP — server/client/tools/resources/auth/transports for AI agent integration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Claude Code architecture — artifact design, context, agentic patterns. For CC audit/build.
Kailash Core SDK — workflows, 110+ nodes, runtime, async, cycles, MCP, OpenTelemetry. Use for WorkflowBuilder + connections + runtime patterns.
Kailash DataFlow — MANDATORY for DB/CRUD/bulk/migrations/multi-tenancy. Raw SQL/ORMs BLOCKED.
Kailash Nexus — MANDATORY for HTTP/API/CLI/MCP unified deployment. Direct FastAPI/Flask BLOCKED.
Kailash Kaizen (Python) — MANDATORY for AI agents/RAG/signatures. Custom LLM agents BLOCKED.
Kailash cheatsheets — patterns, nodes, workflows, cycles, perf, security, saga.
| name | kailash-mcp |
| description | Kailash MCP — server/client/tools/resources/auth/transports for AI agent integration. |
Production-ready MCP server implementation built into Kailash Core SDK for seamless AI agent integration.
Kailash's MCP module provides:
from kailash_mcp import MCPServer
# Create MCP server
server = MCPServer(name="my-server")
# Register workflow as MCP tool
@server.tool()
def summarize(text: str) -> str:
"""Summarize the given text."""
workflow = create_summary_workflow()
results, run_id = runtime.execute(workflow.build())
return results["summary"]
# Run server (stdio transport by default)
server.run()
The Model Context Protocol enables AI agents to:
MCP supports multiple transport mechanisms:
Tools are type-safe functions exposed to AI agents:
Resources expose data to AI agents:
Use MCP when you need to:
from kailash_mcp import MCPServer
from kailash.workflow.builder import WorkflowBuilder
server = MCPServer(name="workflow-server")
@server.tool()
def process_data(input: str) -> dict:
"""Process data through a workflow."""
workflow = WorkflowBuilder()
# Build workflow
results, run_id = runtime.execute(workflow.build())
return results["output"]
from nexus import Nexus
# Nexus automatically creates MCP channel
app = Nexus()
app.register("my_workflow", workflow.build())
app.start() # Includes MCP server
from kailash_mcp import MCPServer
from dataflow import DataFlow
server = MCPServer(name="db-server")
db = DataFlow(...)
@server.resource("users://list")
def get_users():
"""Expose database via MCP resource."""
return db.query_users()
from kailash_mcp import MCPServer
from kaizen.core.base_agent import BaseAgent
server = MCPServer(name="agent-server")
@server.tool()
def analyze(text: str) -> str:
"""Analyze text using an AI agent."""
agent = AnalysisAgent()
return agent(text=text).result
| Transport | Use Case | Pros | Cons |
|---|---|---|---|
| stdio | Local tools, CLI | Simple, reliable | Local only |
| SSE | Web apps | Real-time updates | Complex setup |
| HTTP | APIs, services | Standard protocol | No streaming |
For MCP-specific questions, invoke:
mcp-specialist - MCP server implementationtesting-specialist - MCP testing strategies skill - MCP integration architecture