A simple "Hello World" agent that follows the Model Context Protocol (MCP). This agent is designed to be a minimal template for building more complex agents.
This package provides a basic MCP server that responds with a "# hello world" markdown heading when triggered. It serves as a starting point for understanding how to build agents with the MCP protocol.
- Minimal Implementation: Simple example showing the basic structure of an MCP agent
- Markdown Response: Returns a markdown-formatted greeting
npm install -g @brianbuildz/hello-agent
Run the MCP server:
hello-agent
This will start the MCP server. The server communicates using the MCP protocol via standard input/output.
When prompted with a "hello world" query, the agent will respond with a markdown-formatted "# hello world" heading.
This agent was built as a template using the browser-driver agent as a reference. It implements the basic structure required for an MCP-compliant agent while keeping the functionality minimal.
For more complex examples, refer to the browser-driver package which provides browser automation functionality.
MIT