About Mcpkit
Mcpkit is an MCP server published by v-checha in the Developer Tools category: mCPKit is a developer SDK + CLI toolchain for building MCP client and server in Swift. It has been installed 0 times through Conduid.
The repository has 27 stars and 2 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcpkitclaude mcp add mcpkit -- npx -y @cybertheory/mcpkitnpx -y @cybertheory/mcpkitThis 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 Mcpkit
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
MCPKit
A modern, decorator-based framework for building Model Context Protocol (MCP) servers in TypeScript.
Why MCPKit?
- Decorator-based API - Clean, declarative syntax inspired by NestJS
- Type-safe - Full TypeScript support with automatic type inference
- Raw results -
@Tool({ rawResult: true })for full control over MCP responses - Production-ready - Built-in auth, rate limiting, metrics, tracing, and health checks
- Extensible - Plugin system for reusable functionality
- Multiple transports - stdio, HTTP/SSE, and Streamable HTTP support
Quick Start
npx @mcpkit-dev/cli init my-server
cd my-server
npm run dev
Or install manually:
npm install @mcpkit-dev/core reflect-metadata zod
import 'reflect-metadata';
import { createServer, MCPServer, Tool, Param } from '@mcpkit-dev/core';
@MCPServer({
name: 'my-server',
version: '1.0.0',
})
class MyServer {
@Tool({ description: 'Greet someone' })
greet(@Param({ name: 'name', description: 'Name to greet' }) name: string) {
return `Hello, ${name}!`;
}
}
const server = createServer(MyServer);
await server.listen();
Documentation
Packages
| Package | Description |
|---|---|
| @mcpkit-dev/core | Core framework with decorators and server |
| @mcpkit-dev/cli | CLI for project scaffolding |
| @mcpkit-dev/testing | Testing utilities and mock clients |
Using with Claude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"my-server": {
"command": "node",
"args": ["/path/to/your/server/dist/index.js"]
}
}
}
Requirements
- Node.js 18+
- TypeScript 5.0+
Contributing
Contributions are welcome! Please read our contributing guidelines.
License
MIT
README mirrored from the source repository 17 days ago. The original is authoritative.