
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
pock-programming.guid-mcp
Advanced tools
Model Context Protocol (MCP) server that generates a new Guid (v4, v7).
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.
<WORKSPACE DIRECTORY>/.vscode/mcp.json
file<SOLUTION DIRECTORY>\.mcp.json
fileFor 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",
"--version",
"0.1.0",
"--yes"
]
}
}
}
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/"
]
}
}
}
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.
dotnet pack -c Release
to create the NuGet packagedotnet nuget push bin/Release/*.nupkg --api-key <your-api-key> --source https://api.nuget.org/v3/index.json
.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:
FAQs
An MCP server generating new Guid (v4, v7)
We found that pock-programming.guid-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.