pocki/guid-mcp
If you are the rightful owner of guid-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The GUID MCP Server is a Model Context Protocol server designed to generate new GUIDs (v4, v7) efficiently.
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:
dnxis part of .NET SDK 10.
Install .NET SDK 10 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.jsonfile - Visual Studio: Create a
<SOLUTION DIRECTORY>\.mcp.jsonfile
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: