Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion stubs/prompt.stub
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class {{ class }} extends Prompt
/**
* The prompt's description.
*/
protected string $description = 'A description of what this prompt does.';
protected string $description = <<<'MARKDOWN'
A description of what this prompt does.
MARKDOWN;

/**
* Handle the prompt request.
Expand Down
4 changes: 3 additions & 1 deletion stubs/resource.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ class {{ class }} extends Resource
/**
* The resource's description.
*/
protected string $description = 'A description of what this resource contains.';
protected string $description = <<<'MARKDOWN'
A description of what this resource contains.
MARKDOWN;

/**
* Handle the resource request.
Expand Down
4 changes: 3 additions & 1 deletion stubs/server.stub
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ class {{ class }} extends Server
/**
* The MCP server's instructions for the LLM.
*/
protected string $instructions = 'Instructions describing how to use the server and its features.';
protected string $instructions = <<<'MARKDOWN'
Instructions describing how to use the server and its features.
MARKDOWN;

/**
* The tools registered with this MCP server.
Expand Down
4 changes: 3 additions & 1 deletion stubs/tool.stub
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class {{ class }} extends Tool
/**
* The tool's description.
*/
protected string $description = 'A description of what this tool does.';
protected string $description = <<<'MARKDOWN'
A description of what this tool does.
MARKDOWN;

/**
* Handle the tool request.
Expand Down
Loading