BUILDERS.KYA-OS.ORG

BUILD ON KYA-OS

Authority and accountability for the agentic web. Verifiable identity and scoped delegation rooted at a Responsible Party - every agent action authorized before it runs, and audit-ready after.

Two lines to a verifiable server

import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';import { withKyaOs, NodeCryptoProvider } from '@kya-os/mcp';  // +1 lineconst server = new McpServer({ name: 'my-server', version: '1.0.0' });await withKyaOs(server, { crypto: new NodeCryptoProvider() }); // +1 lineserver.registerTool('greet', { description: 'Say hello' }, async (args) => ({  content: [{ type: 'text', text: `Hello, ${args.name}!` }],}));

High-integrity identity is a wrap, not a rewrite: every tool response now carries a detached JWS proof - invisible to the LLM, verifiable by anyone.

THE RAILS
how one proof reaches every protocol ->