Related MCP Server Resources

Explore more AI models, providers, and integration options:

  • Explore AI Models
  • Explore AI Providers
  • Explore MCP Servers
  • LangDB Pricing
  • Documentation
  • AI Industry Blog
  • MCP Server
  • MCP Model Context Protocol Server
  • Xano MCP Server
  • SQLite MCP Server
  • mcp-server-data-exploration
Back to MCP Servers
MCP Server

MCP Server

Public
johnleider/mcp

Model Context Protocol server enabling AI assistants to interact with custom tools and resources through a modular, extensible Node.js architecture with stdio communication and full TypeScript support for enhanced development workflows.

typescript
0 tools
May 30, 2025
Updated Jun 4, 2025

Supercharge Your AI with MCP Server

MCP Server

Unlock the full potential of MCP Server through LangDB's AI Gateway. Get enterprise-grade security, analytics, and seamless integration with zero configuration.

Unified API Access
Complete Tracing
Instant Setup
Get Started Now

Free tier available • No credit card required

Instant Setup
99.9% Uptime
10,000+Monthly Requests

MCP

Machine Context Protocol (MCP) server.

Overview

This is a Model Context Protocol (MCP) server implementation that allows AI assistants like Claude to interact with your custom tools and resources. The server is built using the official @modelcontextprotocol/sdk package and provides a modular architecture for adding custom capabilities.

This MCP server runs as a Node.js application and communicates over stdio, making it compatible with VS Code's MCP integration. It's designed to be extensible, allowing you to add custom tools, resources, and prompts to enhance AI capabilities in your development workflow.

Installation

# Install dependencies pnpm install # Build the project pnpm run build # Start the server pnpm start

Configuration for VS Code

To use this MCP server with VS Code, add the following to your .vscode/mcp.json file (or move it to settings.json for global usage):

{ "servers": { "my-mcp-server": { "command": "node", "args": ["/absolute/path/to/mcp/dist/index.js"], "env": {} } } }

Make sure to replace /absolute/path/to with the actual absolute path to the mcp directory.

Additionally, ensure that automatic discovery is enabled in your settings.json file:

{ "chat.mcp.discovery.enabled": true }

You can also verify the discovery and configuration by using the command palette in VS Code:

  1. Press Ctrl + Shift + P (or Cmd + Shift + P on macOS).
  2. Search for MCP.
  3. Use the available options to check the discovery and configuration settings.

Features

This MCP server provides a structured foundation for building custom tools and capabilities for AI assistants with:

  • Modular Architecture: Organized into distinct modules for tools, resources, and prompts
  • Stdio Communication: Compatible with VS Code's MCP integration through stdio transport
  • Environment Configuration: Uses dotenv for environment variable management
  • TypeScript Support: Full TypeScript integration for type safety
  • Extensible Design: Easily add new tools and capabilities by implementing the provided interfaces

The server is designed to be expanded with custom tools for helping with components, layouts, and documentation as indicated in the capabilities description.

Project Structure

mcp/
├── src/
│   ├── index.ts              # Main entry point, server initialization
│   ├── prompts/              # Prompt registration and management
│   │   └── index.ts          # Prompt registration module
│   ├── resources/            # Resource definitions and handlers
│   │   └── index.ts          # Resource registration module
│   └── tools/                # Tool implementations
│       └── index.ts          # Tool registration module
├── .github/                  # GitHub-specific files
│   └── FUNDING.yml           # Sponsorship configuration
├── eslint.config.js          # ESLint configuration
├── package.json              # Project metadata and dependencies
├── pnpm-lock.yaml            # Dependency lock file
├── tsconfig.json             # TypeScript configuration
└── README.md                 # Project documentation

Development

To add new features or extend existing ones:

  1. Add or update service methods in the appropriate service file.
  2. Register the tool in the corresponding tools file.
  3. Build and test your changes.

MCP SDK Integration

This project uses the @modelcontextprotocol/sdk package to create a Machine Context Protocol server that Claude can interact with. The MCP architecture enables Claude to:

  • Call specific tools defined in the server
  • Receive structured responses
  • Provide a better experience for related inquiries

The implementation follows the standard MCP patterns with:

  • Server initialization using McpServer
  • StdioServerTransport for communication

License

MIT

Publicly Shared Threads0

Discover shared experiences

Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!

Share your threads to help others
Related MCPs5
  • MCP Server
    MCP Server

    Provides greeting-related tools, resources, and prompts via Model Context Protocol (MCP), enabling p...

    Added May 30, 2025
  • MCP Model Context Protocol Server
    MCP Model Context Protocol Server

    Demonstrates Model Context Protocol (MCP) integration enabling AI models to execute tools, access re...

    Added May 30, 2025
  • Xano MCP Server
    Xano MCP Server

    Python-based Model Context Protocol server enabling AI assistants to securely interact with Xano ins...

    Added May 30, 2025
  • SQLite MCP Server
    SQLite MCP Server

    A Model Context Protocol server enabling AI models to execute SQL queries, manage SQLite database sc...

    Added May 30, 2025
  • mcp-server-data-exploration
    mcp-server-data-exploration

    Interactive Model Context Protocol server enabling seamless data exploration by loading CSV datasets...

    2 tools
    Added May 30, 2025