StdioTemplate class

Generates stdio server code from tool definitions using dart_mcp.

This template creates a complete stdio MCP server that:

  • Uses JSON-RPC over standard input/output
  • Suitable for CLI-based MCP clients
  • Registers all tools with their JSON schemas
  • Handles tool execution with proper error handling

The stdio transport is the default and recommended for local CLI tools that communicate via stdin/stdout streams.

Constructors

StdioTemplate()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

generate(List<Map<String, dynamic>> tools) String
Generates the stdio server Dart code.