AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Kody

mcp-kentcdodds-kody · by kentcdodds

Your assistant's home — the memory, keys, code, and automations your AI agent keeps, portable across every MCP host. Built on Cloudflare Workers.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add mcp-kentcdodds-kody

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-kentcdodds-kody)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Kody? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Your assistant's home — the memory, keys, code, and automations your AI agent keeps, portable across every MCP host. Built on Cloudflare Workers.


Kody is your assistant's home—the memory, keys, code, and automations your AI agent keeps, portable across every MCP host. Built on Cloudflare Workers and the Model Context Protocol (MCP), it ships a Remix UI, Worker-based request routing, package runtime plumbing, and OAuth-protected MCP endpoints. The project favors a compact MCP surface with powerful search and Code Mode execute flows over a large static tool catalog.

Kody is a multi-user personal assistant: each signed-in user gets a fully isolated assistant (packages, jobs, secrets, values, memories, and related state). Tests and fixtures may seed deterministic local accounts, but no account is privileged at runtime. The repo follows several epicflare starter conventions.

The repo is organized as an Nx monorepo, with shared modules in packages/shared (@kody-internal/shared), the main app worker under packages/worker, and mock Workers under packages/mock-servers/*.

Quick Start

npm install
npm run dev

The dev server runs at localhost:8787. Wrangler handles the local Cloudflare Workers runtime and D1 database automatically.

To scaffold a new project from the epicflare template instead, run npx create-epicflare.

See [docs/contributing/getting-started.md](./docs/contributing/getting-started.md) for the full setup paths and expectations. Contributors and agents should start with [AGENTS.md](./AGENTS.md) for repo-specific guidance.

If you are trying to understand what this repository is for, start with [docs/contributing/project-intent.md](./docs/contributing/project-intent.md).

Tech Stack

| Layer | Technology | | --------------- | --------------------------------------------------------------------- | | Runtime | Cloudflare Workers | | UI Framework | Remix 3 (alpha) | | Package Manager | npm | | Workspace | Nx + npm workspaces | | Database | Cloudflare D1 | | Session/OAuth | Cloudflare KV | | MCP State | Durable Objects | | E2E Testing | Playwright | | Bundler | esbuild |

Scope

  • Open-source personal assistant platform, not a general-purpose agent harness
  • MCP-first architecture intended to work across compatible AI agent hosts
  • Compact MCP surface area preferred over a large static tool inventory
  • ChatGPT is a likely primary host target, while keeping the server usable from

other MCP hosts where practical

How It Works

Request → packages/worker/src/index.ts
              │
              ├─→ OAuth handlers
              ├─→ MCP endpoints
              ├─→ Static assets (`packages/worker/public/`)
              └─→ Server router → Remix components
  • packages/worker/src/index.ts is the entrypoint for Cloudflare Workers
  • OAuth requests are handled first, then MCP requests, then static assets
  • Non-asset requests fall through to the server handler and router
  • Client assets are bundled into packages/worker/public/ and served via the

ASSETS binding

Documentation

| Document | Description | | -------------------------------------------------------------------------------------------- | ------------------------------------ | | [docs/contributing/getting-started.md](./docs/contributing/getting-started.md) | Setup, environment variables, deploy | | [docs/contributing/environment-variables.md](./docs/contributing/environment-variables.md) | Adding new env vars | | [docs/contributing/cloudflare-offerings.md](./docs/contributing/cloudflare-offerings.md) | Optional Cloudflare integrations | | [docs/contributing/project-intent.md](./docs/contributing/project-intent.md) | Scope, goals, and non-goals | | [docs/contributing/index.md](./docs/contributing/index.md) | Developing and extending Kody | | [docs/use/index.md](./docs/use/index.md) | Using Kody over MCP | | [docs/contributing/setup.md](./docs/contributing/setup.md) | Local development and verification |


Built with ❤️ by Epic Web

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.