KYA OS Server
FreeNot checkedA ready-to-deploy MCP server with in-process agent verification via KYA-OS Checkpoint, enabling secure tool access for verified agents.
About
A ready-to-deploy MCP server with in-process agent verification via KYA-OS Checkpoint, enabling secure tool access for verified agents.
README
A ready-to-deploy Model Context Protocol server, protected by KYA-OS Checkpoint. Deploy it in one click, point an MCP client at it, and every agent that connects is verified by the KYA-OS detection engine — running in-process, no gateway round-trip — before it can reach your tools.
Deploy with Vercel Deploy to Netlify
Railway: a one-click button is coming — Railway deploys published templates by code (
railway.com/new/template/<code>), so it needs this repo published as a Railway template first. For now, deploy it on Railway from the repo directly (New Project → Deploy from GitHub repo).
What you get
- A working MCP server at
/api/mcp(streamable HTTP) with two example tools — swap in your own. - Checkpoint protection via
withCheckpointfrom@kya-os/checkpoint-nextjs— the Rust detection engine runs in-process (WASM), and enforcement is driven by your dashboard policy. - Zero-config deploy — a standard Next.js 16 App Router app; Vercel / Railway / Netlify detect and build it automatically.
One-click deploy
- Click a Deploy button above.
- When prompted, paste two values from your Checkpoint project settings:
CHECKPOINT_PROJECT_ID— binds this server to your project's policy.CHECKPOINT_API_KEY— authenticates the policy fetch.
- Deploy. Your MCP endpoint is live at
https://<your-deployment>/api/mcp.
Secrets are entered on the platform, never in a URL. Without them the server still runs, using the engine's default detection instead of your dashboard policy.
Connect an MCP client
Point any MCP client at your endpoint. For example, in a client that uses mcp.json:
{
"mcpServers": {
"kya-os": {
"url": "https://<your-deployment>/api/mcp"
}
}
}
Then call the checkpoint_status tool to confirm which project is protecting the server.
Local development
cp .env.example .env.local # add your CHECKPOINT_* values
npm install
npm run dev # http://localhost:3000 · MCP at /api/mcp
How Checkpoint protects it
middleware.ts wires withCheckpoint across every route (including /api/mcp). The engine
verifies each request locally and applies your project's policy — block, challenge-for-delegation,
or observe — which you configure in the dashboard. Because verification is in-process, there's no
per-request network hop.
// middleware.ts
import { withCheckpoint } from '@kya-os/checkpoint-nextjs';
export default withCheckpoint({
tenantHost: process.env.CHECKPOINT_TENANT_HOST ?? 'localhost:3000',
projectId: process.env.CHECKPOINT_PROJECT_ID,
apiKey: process.env.CHECKPOINT_API_KEY,
});
Add your own tools
Tools live in app/api/[transport]/route.ts. Each server.tool(...) becomes callable by any
connected MCP client:
server.tool(
'get_weather',
'Return the current weather for a city.',
{ city: z.string() },
async ({ city }) => ({
content: [{ type: 'text', text: `It's sunny in ${city}.` }],
})
);
Going further — verifiable agent delegation
This template uses Checkpoint's detection layer. If you want agents to present a
cryptographically verifiable, capability-scoped delegation (a user grants an agent a
time-boxed, read-vs-write-separated credential from their own passkey-backed identity), see the
Hobbsidian reference app, which builds on @kya-os/id and
@kya-os/mcp.
Learn more
- Checkpoint dashboard & docs — kya.vouched.id
- Model Context Protocol — modelcontextprotocol.io
Installing KYA OS Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/kya-os/mcp-server-templateFAQ
Is KYA OS Server MCP free?
Yes, KYA OS Server MCP is free — one-click install via Unyly at no cost.
Does KYA OS Server need an API key?
No, KYA OS Server runs without API keys or environment variables.
Is KYA OS Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install KYA OS Server in Claude Desktop, Claude Code or Cursor?
Open KYA OS Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare KYA OS Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
