1. Conduid
  2. AI
  3. mcp
MCP server · AI

mcp

Model Context Protocol integration for the Vercube framework

Unclaimed ai
39Low

Scored 3 months ago · breakdown

About mcp

mcp is an MCP server published by git+vercube in the AI category: model Context Protocol integration for the Vercube framework. It has been installed 0 times through Conduid.

Install

Install
npx @vercube/mcp
Claude Code
claude mcp add vercube -- npx -y @vercube/mcp
npx
npx -y @vercube/mcp

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 mcp

Powered by Claude · Grounded in docs

I know everything about mcp. 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

Vercube

Next generation HTTP framework

Ask DeepWiki NPM Version GitHub License Codecov

An ultra-efficient JavaScript server framework that runs anywhere - Node.js, Bun, or Deno - with unmatched flexibility and complete configurability for developers who refuse to sacrifice speed or control.

WebsiteDocumentation

✨ Features

  • Declarative Routing - TypeScript decorators for clean, readable API endpoints
  • Dependency Injection - Built-in IoC container for testable, maintainable code
  • Runtime Agnostic - Runs on Node.js, Bun, and Deno with zero configuration
  • Type-Safe Validation - Standard Schema support (Zod, Valibot, ArkType)
  • High Performance - Native Request/Response handling, no middleware overhead
  • Zero Config - Sensible defaults, start coding immediately
  • Modular Architecture - Auth, Logger, Storage, WebSockets, Serverless, and more

🚀 Quick Start

Create a New Project

# pnpm
pnpm create vercube@latest

# npm
npx create-vercube@latest

# bun
bun create vercube

Start Development Server

pnpm dev

Open http://localhost:3000 - you're ready to go! 🚀

Try It Online

Open in StackBlitz Open in CodeSandbox

📝 Example

import { Controller, Get, Post, Body, Param } from '@vercube/core';
import { Inject } from '@vercube/di';
import { z } from 'zod';

const CreateUserSchema = z.object({
  name: z.string().min(2),
  email: z.string().email(),
});

type CreateUserDto = z.infer<typeof CreateUserSchema>;

@Controller('/users')
export class UserController {
  @Inject(UserService)
  private userService!: UserService;

  @Get('/')
  async getUsers() {
    return this.userService.findAll();
  }

  @Get('/:id')
  async getUser(@Param('id') id: string) {
    return this.userService.findById(id);
  }

  @Post('/')
  async createUser(@Body({ validationSchema: CreateUserSchema }) data: CreateUserDto) {
    return this.userService.create(data);
  }
}

More examples available in the examples directory.

📦 Packages

Package Description
@vercube/core Core framework with routing and middleware
@vercube/di Lightweight dependency injection container
@vercube/auth Authentication decorators and middleware
@vercube/logger Flexible logging with multiple drivers
@vercube/storage File storage abstraction layer
@vercube/ws WebSocket support
@vercube/serverless AWS Lambda & Azure Functions adapters

📖 Documentation

Comprehensive documentation is available at vercube.dev

❤️ Contribute

We welcome contributions! Here's how you can help:

Every contribution matters. We maintain a welcoming environment for all contributors.

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About mcp

How do I install mcp?

Run npx @vercube/mcp, 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 mcp safe to use with an AI agent?

Its trust score is 39 out of 100 (low). 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 mcp still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.