1. Conduid
  2. Developer Tools
  3. Coding Toolbox
MCP server · Developer Tools

Coding Toolbox

MCP server for coding

Unclaimed last commit a year ago devtools
41Fair

Scored 2 days ago · breakdown

About Coding Toolbox

Coding Toolbox is an MCP server published by jger in the Developer Tools category: mCP server for coding. It has been installed 0 times through Conduid.

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 mcp-coding-toolbox

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 Coding Toolbox

Powered by Claude · Grounded in docs

I know everything about Coding Toolbox. 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.

Releases

v0.1.0v0.1.0

README

MCP Server with UTC Datetime Tool

This project implements a simple MCP (Model Context Protocol) server using the mcp-golang framework. It exposes a tool that provides the current date and time in UTC.

Features

  • Provides current UTC datetime via an MCP tool named current_utc_datetime.
  • Can be run locally or using Docker Compose.

Prerequisites

  • Go (if running locally)

Local Execution

  1. Clone the repository (if applicable) or ensure you have the main.go, go.mod and go.sum files.
  2. Install dependencies:
    go mod tidy
    
  3. Build the server:
    go build -o mcp-datetime-server
    
  4. Run the server:
    ./mcp-datetime-server
    
    You should see the output: MCP Server with UTC Datetime tool started. Waiting for requests...

Configuration with Cursor

To use this MCP server with an AI assistant like Cursor:

  1. Ensure the MCP server is running locally.

  2. Locate your AI assistant's MCP configuration file. For Cursor, you can typically find this by:

    • Clicking the settings icon (often a gear).
    • Navigating to an "MCP" or "AI Settings" section.
    • There might be an option like "Add new global MCP Server" or "Edit MCP Config". This will usually open a JSON file (e.g., mcp.json or claude_desktop_config.json if you were using Claude directly, but Cursor will have its own).
  3. Edit the MCP configuration file to add your server. You'll need the absolute path to your compiled mcp-datetime-server executable if running locally.

    Example for local execution:

    Assuming your executable mcp-datetime-server is located at /Users/youruser/path/to/project/mcp-datetime-server:

    {
      "mcpServers": {
        "utc-datetime-server": {
          "command": "/Users/youruser/path/to/project/mcp-datetime-server",
          "args": [],
          "env": {}
        }
      }
    }
    
    • Replace "/Users/youruser/path/to/project/mcp-datetime-server" with the actual absolute path to your mcp-datetime-server executable.
    • "utc-datetime-server" is a friendly name you choose for this server configuration.

    For simplicity with stdio transport, running the server locally is the most straightforward way to integrate with Cursor's MCP command configuration.

  4. Save the configuration file.

  5. Restart your AI assistant (Cursor) if necessary.

Testing the MCP Server

Once the server is running and configured in your AI assistant (e.g., Cursor):

  1. Open a chat with the assistant.

  2. Ask a question that would invoke the tool. For example: What is the current UTC datetime?

  3. The assistant should indicate that it needs to use the current_utc_datetime tool.

  4. Grant permission if prompted.

  5. The assistant should then display the current UTC date and time provided by your MCP server.

    Example output you might see from the assistant: Current UTC datetime: 2023-10-27T10:30:00Z (the actual datetime will vary).

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About Coding Toolbox

How do I install Coding Toolbox?

Run npx mcp-coding-toolbox, 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 Coding Toolbox 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 Coding Toolbox 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.