rskit-mcp — Model Context Protocol bridge
rskit-mcp exposes an rskit-tool registry through MCP and can discover remote MCP tools for use inside rskit applications. It keeps tool execution policy in rskit-tool::Envelope while mapping MCP wire types at the boundary.
Install
[]
= "0.2.0-alpha.2"
= "0.2.0-alpha.3"
Architecture
graph TD
tool[rskit-tool]
schema[rskit-schema]
authz[rskit-authz]
skill[rskit-skill]
mcp[rskit-mcp]
server[stdio/server adapters]
client[remote client]
registry[tool registry bridge]
agent[rskit-agent]
tool --> mcp
schema --> mcp
authz --> mcp
skill --> mcp
mcp --> server
mcp --> client
mcp --> registry
registry --> agent
Quick start
use Arc;
use ;
use Registry;
When to use
Use rskit-mcp when you need to expose a local tool registry through MCP or consume remote MCP tools without letting protocol concerns leak into the core tool layer.