@jhaigc/hellofastmcp
v1.0.4
Published
A simple Hello FastMcp tool
Readme
HelloFastMcp
A simple MCP (Model Context Protocol) tool built with FastMCP framework that responds with "Hello FastMcp" when invoked.
Installation
npm install @jhaigc/hellofastmcpUsage
As a standalone MCP server
npx @jhaigc/hellofastmcpProgrammatic usage
import { FastMCP } from 'fastmcp';
import helloTool from '@jhaigc/hellofastmcp';
const server = new FastMCP({
name: "MyServer",
version: "1.0.0"
});
server.addTool(helloTool);
await server.start();Tool Details
hello
A simple tool with no parameters that returns "Hello FastMcp" when invoked.
License
MIT
