drio
Open app

MCP server

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP server is a platform that creates test tools, resources, and prompts that can be deployed on OpenShift.

To use MCP server, you can add notes using the 'add-note' tool and summarize them using the 'summarize-notes' prompt.

  • Implements a simple note storage system with a custom URI scheme. - Provides a prompt to summarize all stored notes with customizable detail levels. - Allows adding new notes with specific names and content.
  1. Storing and managing notes for software development projects.
  2. Summarizing project notes for quick reference.
  3. Creating a centralized resource for test tools and prompts.

Add to your AI client

Use these steps to connect MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-test-server-shreyanand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-server-shreyanand"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-test-server-shreyanand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-server-shreyanand"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-test-server-shreyanand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-server-shreyanand"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-test-server-shreyanand": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-server-shreyanand"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-test-server-shreyanand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-server-shreyanand"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-test-server-shreyanand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-server-shreyanand"
      ]
    }
  }
}

FAQ

Can I access individual notes?

Yes! Each note can be accessed using a custom note:// URI scheme.

How do I summarize my notes?

Use the 'summarize-notes' prompt with an optional style argument to control the detail level.

What arguments are required to add a note?

You need to provide a 'name' and 'content' as required string arguments.