1. Conduid
  2. Developer Tools
  3. Dynamic Tool MCP Server
MCP server · Developer Tools

Dynamic Tool MCP Server

A basic MCP server using the SSE transport that can be used to test dynamic tool creation/management

Unclaimed last commit a year ago devtools
41Fair

Scored 3 months ago · breakdown

About Dynamic Tool MCP Server

Dynamic Tool MCP Server is an MCP server published by scitara-cto in the Developer Tools category: a basic MCP server using the SSE transport that can be used to test dynamic tool creation/management. It has been installed 0 times through Conduid.

The repository has 2 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx dynamic-tool-mcp-server

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 Dynamic Tool MCP Server

Powered by Claude · Grounded in docs

I know everything about Dynamic Tool MCP Server. 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

Dynamic Tool MCP Server

This is a basic MCP (Model Control Protocol) server implementation designed for testing MCP clients. The server demonstrates dynamic tool management capabilities, allowing tools to be added at runtime.

Features

The server comes with two built-in tools:

  1. Hello Tool (hello)

    • A simple greeting tool that takes a name parameter
    • Returns a greeting message
    • Example: hello("World") returns "Hello, World!"
  2. Add Tool Tool (add_tool)

    • Dynamically adds new tools to the MCP server
    • Takes a tool name and description as parameters
    • After adding a tool, notifies connected MCP clients about the tool list change
    • Clients should respond by requesting an updated tool list

Dynamic Tool Management

The server implements the MCP protocol's dynamic tool management feature. When a new tool is added using the add_tool tool:

  1. The tool is registered with the server
  2. The server sends a notification to all connected clients about the tool list change
  3. Clients should respond by requesting an updated tool list
  4. The new tool becomes immediately available for use

This functionality makes this server ideal for testing MCP client implementations, particularly their ability to:

  • Handle dynamic tool list updates
  • Request and process updated tool lists
  • Support runtime tool registration

Getting Started

  1. Install dependencies:

    npm install
    
  2. Start the server:

    npm start
    

The server will run on http://localhost:4100 by default.

Configuration

The server can be configured through the .cursor/mcp.json file:

{
  "mcpServers": {
    "dynamic-tool": {
      "url": "http://localhost:4100/sse"
    }
  }
}

Testing

This server is particularly useful for testing MCP client implementations that need to handle dynamic tool management. It allows you to verify that your client:

  • Correctly processes tool list change notifications
  • Properly requests and handles updated tool lists
  • Can use newly added tools immediately after they're registered

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

Questions

About Dynamic Tool MCP Server

How do I install Dynamic Tool MCP Server?

Run npx dynamic-tool-mcp-server, 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 Dynamic Tool MCP Server safe to use with an AI agent?

Its trust score is 41 out of 100 (fair). 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 Dynamic Tool MCP Server still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.