0.1.3 • Published 5 months ago
create-strawberry-toolserver v0.1.3
create-strawberry-toolserver
A minimal CLI tool to scaffold Strawberry Tool Server applications with zero configuration. Get started building your own MCP-compatible tool server in seconds.
Usage
You can create a new Strawberry Tool Server with your preferred package manager:
# npm
npx create-strawberry-toolserver@latest my-toolserver
# pnpm
pnpm dlx create-strawberry-toolserver@latest my-toolserver
# yarn
yarn create strawberry-toolserver my-toolserver
Command Line Arguments
--name
: Name of the template to use (default: "strawberry")--dir
: Directory where the project will be created (default: current directory)--registry
: Custom registry URL for templates
Getting Started
Once your project is created:
Navigate to the project directory:
cd my-toolserver
Install dependencies:
npm install
Start the development server:
npm start
Test the server:
npx @strawberryprotocol/mcp-cli --sse http://localhost:3000/sse
Features
- Zero configuration setup
- TypeScript support out of the box
- Built-in MCP (Model Context Protocol) compatibility
- Docker support
- Example tool implementation included