hello-fastmcp-demo-by-user
v1.0.0
Published
A simple FastMCP tool that outputs 'Hello FastMCP!'
Readme
hello-fastmcp-demo-by-user
A simple FastMCP tool that outputs "Hello FastMCP!"
Installation
npm install hello-fastmcp-demo-by-userUsage
As a standalone MCP server
npx hello-fastmcp-demo-by-userOr install globally:
npm install -g hello-fastmcp-demo-by-user
hello-fastmcp-demo-by-userAs a library
import { createHelloFastMCP } from 'hello-fastmcp-demo-by-user';
const server = createHelloFastMCP();
// Add more tools if needed
server.addTool({
name: "my-custom-tool",
description: "My custom tool",
execute: async () => {
return "Custom response";
}
});
server.start({
transportType: "stdio"
});Tool
The package provides a single tool:
hello: Returns "Hello FastMCP!" when called
License
MIT
