mcp_dart_cli 0.1.0
mcp_dart_cli: ^0.1.0 copied to clipboard
CLI for Model Context Protocol (MCP) servers in Dart.
mcp_dart_cli #
CLI for creating Model Context Protocol (MCP) servers in Dart.
Installation #
dart pub global activate mcp_dart_cli
Usage #
Create a new project #
mcp_dart create <project_name>
Create from a specific template #
You can use a local path, a Git URL, or a GitHub tree URL as a template.
# From a local path
mcp_dart create <project_name> --template path/to/template
# From a Git repository
mcp_dart create <project_name> --template https://github.com/username/repo.git
# From a Git repository with a specific ref and path
mcp_dart create <project_name> --template https://github.com/username/repo.git#ref:path/to/brick
# From a GitHub repository using short syntax
mcp_dart create <project_name> --template owner/repo/path/to/brick@ref
# From a specific path in a GitHub repository (tree URL)
mcp_dart create <project_name> --template https://github.com/leehack/mcp_dart/tree/main/packages/templates/simple
Commands #
create: Creates a new MCP server project.