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

Mcpkit

mcp-sraveshnandan-mcpkit Β· by sraveshnandan

πŸš€ The create-next-app for MCP servers β€” scaffold, develop, validate, and ship production-ready Model Context Protocol servers in seconds.

β€” No reviews yet
0 installs
43 views
0.0% view→install

Install

$ agentstack add mcp-sraveshnandan-mcpkit

βœ“ 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-sraveshnandan-mcpkit)

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 Mcpkit? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

mcpkit

[](https://www.npmjs.com/package/mcpkit-cli) [](./LICENSE) [](https://github.com/sraveshnandan/mcpkit)

> The create-next-app for MCP servers. Build MCP servers with the workflow already wired in.

mcpkit is a CLI toolkit for creating and working with TypeScript Model Context Protocol servers. The current repository covers scaffolding, development helpers, testing, validation, diagnostics, lightweight docs generation, builds, publishing, and shell completions.


Quick Start

This is the shortest broadly compatible path verified against the current implementation.

# Install the published CLI package
npm install -g mcpkit-cli

# Create a working project with the verified basic template
mcpkit init hello-mcp --template basic --package-manager npm --yes

# Start the generated server
cd hello-mcp
npm run dev

What this does today:

  • uses the basic template
  • installs dependencies automatically in --yes mode
  • generates .vscode/mcp.json
  • creates a stdio-first MCP server with a greet tool

Why mcpkit

Building the server is only part of the work. mcpkit gives you the surrounding workflow too.

  • 4 templates β€” basic, http, auth, and full
  • Development workflow β€” generated watch-mode scripts plus mcpkit dev
  • Testing and validation β€” generated Vitest scripts plus mcpkit test and mcpkit validate
  • Diagnostics β€” check-env and doctor for environment and project checks
  • Shell completions β€” bash, zsh, and fish
  • Build and publish flow β€” build and ship for release work
  • Official inspector integration β€” mcpkit dev --inspect opens the MCP Inspector

Templates

| Template | Transport | Intended use | |----------|-----------|--------------| | basic | stdio | Learn the MCP shape and start with the fewest moving parts | | http | Streamable HTTP | Build a remote-style MCP server with HTTP routes | | auth | HTTP + bearer auth | Add auth-oriented scaffolding for protected /mcp access | | full | HTTP + auth + ops | Start with logging, metrics, health checks, linting, and formatting config |

> Note: the auth and full templates still need real JWKS-backed configuration for a complete production auth flow.


Commands

| Command | Description | |---------|-------------| | mcpkit init | Initialize a new MCP server project | | mcpkit dev | Start development server with hot reload | | mcpkit build | Build the MCP server for production | | mcpkit test | Run tests | | mcpkit validate | Validate MCP server configuration | | mcpkit docs | Generate a single api.md documentation file | | mcpkit check-env | Check environment setup | | mcpkit ship | Build and publish the MCP server | | mcpkit doctor | Check project health and diagnose issues | | mcpkit completions | Generate or install shell completions |

Verified examples

mcpkit init hello-mcp --template basic --package-manager npm --yes
mcpkit dev --transport http --port 3100 --inspect
mcpkit check-env --json
mcpkit completions --install

Learn more


Development

# Clone the repo
git clone https://github.com/sraveshnandan/mcpkit.git
cd mcpkit

# Install dependencies
bun install

# Build all packages
bun run build

# Run tests
bun run test

# Type check
bun run typecheck

Contributing

Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.


License

[MIT](LICENSE) Β© mcpkit contributors

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.