About simply
simply is an MCP server published by git+Clockwork-Innovations in the AI category: type-safe TypeScript framework for building Model Context Protocol (MCP) servers with pure interface-driven API. It has been installed 0 times through Conduid.
Install
npx simply-mcpclaude mcp add simply-mcp-ts -- npx -y simply-mcpnpx -y simply-mcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about simply
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
Simply MCP
The fastest way to build MCP servers. Tell an AI what you need, or write it yourself.
Tier 1 Compatible Framework
Simply-MCP is a Tier 1 Compatible Community Framework, providing 100% coverage of the Model Context Protocol specification (2025-11-25) and all active Standards Track SEPs.
- SEP-1865 (MCP Apps): Native support for rich, interactive UIs.
- SEP-1036 (URL Elicitation): Secure out-of-band user interaction.
- SEP-1577 (Sampling): Advanced LLM sampling with tool-use and context support.
- SEP-2339 (Tasks): Durable, asynchronous background operations.
View the full Compliance Report.
What You Can Build
Two Ways to Build
Path 1: Let AI Build It (Recommended)
With Claude Code or any AI coding tool:
> Build me an MCP server that monitors system resources
and shows a real-time dashboard
The AI uses Simply-MCP's factory API to generate a complete, production-ready server. Iterate by describing what you want to change.
Path 2: Write It Yourself
import { createServer, createTool } from 'simply-mcp';
export const server = createServer({
name: 'my-server',
version: '1.0.0',
});
export const addTool = createTool({
description: 'Add two numbers',
params: {
a: { type: 'number', description: 'First number' },
b: { type: 'number', description: 'Second number' },
},
handler: ({ a, b }) => ({ sum: a + b }),
});
npx simplymcp run server.ts # Run (stdio for Claude)
npx simplymcp run server.ts --port 3000 # Run (HTTP)
Both paths produce the same thing: a type-safe MCP server with tools, resources, and optional UI.
Install
npm install simply-mcp
The bare install pulls only the core MCP runtime (SDK, zod, yargs,
MCP Apps). Opt-in features are declared as optional peer
dependencies — install only the ones your server uses:
| Feature you use | Add |
|---|---|
| HTTP transport | npm install hono @hono/node-server |
| WebSocket transport | npm install ws |
.ts server entries via the CLI |
npm install esbuild tsx |
Interface API (decorators / IServer) |
npm install typescript |
| OAuth (bcrypt hashing) | npm install bcrypt |
| OAuth (Redis storage) | npm install ioredis |
| MCP Apps with React UI | npm install @babel/standalone @remote-dom/core @remote-dom/react |
| UI minification (production) | npm install postcss cssnano html-minifier-terser terser |
| HTML input sanitization | npm install dompurify |
| Code execution sandbox | npm install quickjs-emscripten |
| File-watch dev mode | npm install chokidar |
| Resource SQLite backend | npm install better-sqlite3 |
| Express-router OAuth | npm install express |
Missing-peer errors point at the exact package to install.
One Codebase. Multiple Platforms.
| Claude Desktop | ChatGPT | Your App |
|---|---|---|
| ✓ | ✓ | ✓ |
Write once. The OpenAI adapter is built-in.
Features
| Feature | What it does |
|---|---|
| MCP Apps | Rich UIs with React, Vue, or any framework |
| OpenAI Compatible | Same code deploys to ChatGPT |
| Type Inference | Define once, types flow everywhere |
| Code Execution | Sandboxed QuickJS for AI-generated code |
| Python Handlers | Mix TypeScript and Python in one server |
| Multi-Transport | stdio, HTTP, WebSocket — pick any |
| Bundle Ready | npx simplymcp bundle → single file |
Why Simply-MCP?
// The old way: schema, types, validation, handler — all separate
const schema = { name: 'add', inputSchema: { type: 'object', properties: { a: { type: 'number' } } } };
interface AddParams { a: number; b: number; }
// ...more boilerplate
// Simply-MCP: one definition, fully typed
export const addTool = createTool({
description: 'Add two numbers',
params: {
a: { type: 'number', description: 'First' },
b: { type: 'number', description: 'Second' },
},
handler: ({ a, b }) => ({ sum: a + b }), // Fully typed!
});
CLI
npx simplymcp lint server.ts # Validate before running
npx simplymcp run server.ts # Run (stdio)
npx simplymcp run server.ts --port 3000 # Run (HTTP)
npx simplymcp dev server.ts --port 3000 # Dev mode with hot reload
npx simplymcp bundle server.ts # Bundle for production
Claude Desktop Integration
{
"mcpServers": {
"my-server": {
"command": "npx",
"args": ["simplymcp", "run", "/path/to/server.ts"]
}
}
}
Documentation
| Guide | Description |
|---|---|
| Quick Start | Get running in 5 minutes |
| AI Workflow | Building servers with AI assistance |
| API Reference | createServer, createTool, createResource, createApp |
| CLI | Full command reference |
| Transport | stdio, HTTP, WebSocket modes |
| Code Execution | QuickJS sandbox for tool chaining |
| Typed Tool Results | Canonical structuredContent + outputSchema parsing contract |
| Bundling | Production deployment |
| Examples | Annotated example index |
| FAQ | Common questions |
Examples
| Example | Description |
|---|---|
| minimal.ts | Absolute minimum (~20 lines) |
| complete.ts | All core features |
| code-execution.ts | Sandbox mode |
License
Simply-MCP is free for non-commercial use (research, personal projects, education, evaluation). Commercial use requires a separate license. See LICENSE for details.
For commercial licensing: licensing@cwinnov.com
Built with the Model Context Protocol SDK by Anthropic.
README mirrored from the source repository 3 months ago. The original is authoritative.