1. Conduid
  2. Developer Tools
  3. Mcpkit
MCP server · Developer Tools

Mcpkit

MCPKit is a developer SDK + CLI toolchain for building MCP client and server in Swift.

Unclaimed MIT last commit 7 months ago devtools
61Good

Scored 17 days ago · breakdown

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

Install
npx mcpkit
Claude Code
claude mcp add mcpkit -- npx -y @cybertheory/mcpkit
npx
npx -y @cybertheory/mcpkit

This 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

I know everything about Mcpkit. Ask me about installation, configuration, usage, or troubleshooting.

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

npm version

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

Read the full 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.

Questions

About Mcpkit

How do I install Mcpkit?

Run npx mcpkit, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Mcpkit safe to use with an AI agent?

Its trust score is 61 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Mcpkit still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.