pock-programming.guid-mcp 0.1.7

{
  "inputs": [],
  "servers": {
    "pock-programming.guid-mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": ["pock-programming.guid-mcp@", "--yes"],
      "env": {}
    }
  }
}
                    
This package contains an MCP Server. The server can be used in VS Code by copying the generated JSON to your VS Code workspace's .vscode/mcp.json settings file.
dotnet tool install --global pock-programming.guid-mcp --version 0.1.7
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local pock-programming.guid-mcp --version 0.1.7
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=pock-programming.guid-mcp&version=0.1.7
                    
nuke :add-package pock-programming.guid-mcp --version 0.1.7
                    

GUID MCP Server

Model Context Protocol (MCP) server that generates a new Guid (v4, v7).

Using the MCP Server from NuGet.org

Once the MCP server package is published to NuGet.org, you can configure it in your preferred IDE. Both VS Code and Visual Studio use the dnx command to download and install the MCP server package from NuGet.org.

ℹ️ INFO: dnx is part of .NET SDK 10 (preview).
Install .NET SDK 10 (currently in preview) to use the MCP server via nuget package directly. You can download it from the .NET SDK download page.

  • VS Code: Create a <WORKSPACE DIRECTORY>/.vscode/mcp.json file
  • Visual Studio: Create a <SOLUTION DIRECTORY>\.mcp.json file

For both VS Code and Visual Studio, the configuration file uses the following server definition:

{
  "servers": {
    "GuidMCPServer": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "pock-programming.guid-mcp",
        "--yes"
      ]
    }
  }
}

Developing locally

To test this MCP server from source code (locally) without using a built MCP server package, you can configure your IDE to run the project directly using dotnet run.

{
  "servers": {
    "GuidMCPServer": {
      "type": "stdio",
      "command": "dotnet",
      "args": [
        "run",
        "--project",
        "./GuidMCPServer/"
      ]
    }
  }
}

Testing the MCP Server

Once configured, you can ask Copilot Chat for a Guid, for example, Get me a new Guid. It should prompt you to use the get_guidv4 tool on the GuidMCPServer MCP server and show you the results.

More information

.NET MCP servers use the ModelContextProtocol C# SDK. For more information about MCP:

Refer to the VS Code or Visual Studio documentation for more information on configuring and using MCP servers:

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.1.7 133 8/12/2025
0.1.6 126 8/12/2025
0.1.5 129 8/12/2025
0.1.0 117 7/17/2025