Skip to content

Releases: llmcontext/gomcp

v0.3.0

09 Dec 18:44
9c10658
Compare
Choose a tag to compare
  • Add support for protocol debug file. In the configuration file, set the logging.protocolDebugFile field to the path to the file where to write the protocol debug information.
  • Add support for the inspector. In the configuration file, set the inspector.enabled and inspector.listenAddress fields to set the inspector server address. The inspector is a tool that allows you to inspect the messages exchanged between the MCP server and the LLM. Still in development.
  • Kill the MCP server when the parent process is init. Even though we use a context to stop the server and the goroutines, it seems that the parent process is not always killed when the MCP server is stopped. This is why we now kill the MCP server when the parent process is init.

v0.2.0

08 Dec 15:03
7b2f2f0
Compare
Choose a tag to compare
  • Change signature of mcp.Start(serverName, serverVersion, transport) to mcp.Start(transport), the server name and version are now read from the configuration file
  • Add support for prompts stored in a YAML file. File path is read from the configuration file.