DemoTool MCP Server

DemoTool MCP Server

A modular MCP server that provides custom tools for AI assistants to interact with the DemoTool project codebase, starting with a hello world tool.

Category
Visit Server

README

DemoTool MCP Server

A modular Model Context Protocol (MCP) server for the DemoTool project. This server provides custom tools that AI assistants in Cursor can use to better understand and interact with the codebase.

What is MCP?

Model Context Protocol (MCP) is an open protocol that allows AI assistants to securely interact with external data sources and tools. This server exposes project-specific tools that Cursor can use to enhance development workflows.

Project Structure

The server is organized into a modular architecture for easy maintenance and scalability:

mcp-server/
├── src/
│   ├── config/           # Server configuration
│   │   ├── server.config.ts
│   │   └── index.ts
│   ├── server/           # Server setup and request handlers
│   │   ├── setup.ts
│   │   └── index.ts
│   ├── tools/            # Tool implementations
│   │   ├── tool-registry.ts    # Tool registry pattern
│   │   ├── hello-world.tool.ts # Example tool
│   │   └── index.ts
│   ├── types/            # TypeScript type definitions
│   │   ├── tool.types.ts
│   │   ├── server.types.ts
│   │   └── index.ts
│   └── index.ts          # Main entry point
├── dist/                 # Compiled JavaScript output
├── package.json
└── tsconfig.json

Available Tools

This MCP server currently provides:

  1. hello_world - Returns a friendly hello world message
    • Optional parameter: name (string) - Name to greet, defaults to "World"

Installation

  1. Install dependencies:
cd mcp-server
npm install
  1. Build the server:
npm run build

Configuration in Cursor

To integrate this MCP server with Cursor:

Method 1: Using Cursor Settings UI

  1. Open Cursor Settings
  2. Navigate to FeaturesMCP
  3. Click + Add New MCP Server
  4. Configure:
    • Name: kids-daily-tool
    • Type: stdio
    • Command: node /home/fernando/code/kids-daily-tool/mcp-server/dist/index.js

Method 2: Manual Configuration (Advanced)

Edit Cursor's MCP configuration file directly:

Linux/Mac: ~/.config/cursor/mcp.json Windows: %APPDATA%\Cursor\mcp.json

Add this configuration:

{
  "mcpServers": {
    "kids-daily-tool": {
      "command": "node",
      "args": ["/home/fernando/code/kids-daily-tool/mcp-server/dist/index.js"],
      "env": {}
    }
  }
}

Usage in Cursor

Once configured, you can use natural language prompts in Cursor Composer to invoke the tool:

  • "Say hello to me!"
  • "Use the hello_world tool"
  • "Call the hello_world MCP tool with name: Fernando"

Cursor will automatically detect when to use the MCP tool and execute it on your behalf. The tool will return a friendly greeting message.

Development

To modify the server:

  1. Edit files in src/
  2. Rebuild: npm run build
  3. Restart Cursor to pick up changes

Troubleshooting

Server not showing up in Cursor

  • Make sure you've built the server (npm run build)
  • Verify the path in your configuration is absolute
  • Restart Cursor after making configuration changes

Tool errors

  • Check the Cursor Developer Console for error messages
  • Verify file permissions on the project directory
  • Ensure Node.js is available in your PATH

Extending the Server

The modular architecture makes it easy to add new tools. Follow these steps:

1. Create a New Tool

Create a new file in src/tools/, e.g., my-new-tool.tool.ts:

import {
  Tool,
  ToolDefinition,
  ToolArguments,
  ToolResult,
} from "../types/index.js";

export class MyNewTool implements Tool {
  getDefinition(): ToolDefinition {
    return {
      name: "my_new_tool",
      description: "Description of what your tool does",
      inputSchema: {
        type: "object",
        properties: {
          param1: {
            type: "string",
            description: "Description of param1",
          },
        },
        required: ["param1"],
      },
    };
  }

  async execute(args: ToolArguments): Promise<ToolResult> {
    // Implement your tool logic here
    const result = `Processing: ${args.param1}`;

    return {
      content: [
        {
          type: "text",
          text: result,
        },
      ],
    };
  }
}

2. Register the Tool

Add your tool to src/tools/index.ts:

export * from "./my-new-tool.tool.js";
import { MyNewTool } from "./my-new-tool.tool.js";

export function getAllTools(): Tool[] {
  return [
    new HelloWorldTool(),
    new MyNewTool(), // Add your tool here
  ];
}

3. Rebuild and Test

npm run build

That's it! The tool registry will automatically pick up your new tool.

Architecture Benefits

  • Modularity: Each tool is self-contained in its own file
  • Type Safety: Full TypeScript support with proper interfaces
  • Scalability: Easy to add new tools without modifying core logic
  • Maintainability: Clear separation of concerns
  • Testability: Individual tools can be tested in isolation

Security Notes

  • This server only provides read-only access to project information
  • It runs locally and doesn't send data to external services
  • Always review MCP server code before integrating it with your editor

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured