MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Serverlist available tools and their descriptions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Related MCP server: my-mcp-server
Installation
# Install dependencies
pnpm install
# Build the project
pnpm run build
# Start the server
pnpm startConfiguration 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:
Press
Ctrl + Shift + P(orCmd + Shift + Pon macOS).Search for
MCP.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 documentationDevelopment
To add new features or extend existing ones:
Add or update service methods in the appropriate service file.
Register the tool in the corresponding tools file.
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
McpServerStdioServerTransport for communication
License
MIT
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for progressive tool usage at any scale (see https://klavis.ai)
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that allows Claude AI to interact with custom tools, enabling extension of Claude's capabilities through the MCP framework.-
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that allows integration with Claude Desktop by creating and managing custom tools that can be executed through the MCP framework.74 npm-
- FlicenseNot gradedqualityDmaintenanceA server implementation for the Model Context Protocol (MCP) that allows Claude AI to execute commands through a command-line interface, enabling direct system interactions from within Claude.-
- FlicenseNot gradedqualityDmaintenanceA customizable Model Context Protocol server built with mcp-framework that enables Claude to access external tools and capabilities through a standardized interface.74 npm-