get_writing_guide
Access systematic principles for creating high-quality technical content with narrative structure, flow, style, and accuracy guidelines.
Instructions
Get the Open Strategy Partners (OSP) writing guide and usage protocol for creating high-quality technical content. This guide provides systematic principles for narrative structure, flow, style, and technical accuracy.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/index.ts:54-82 (handler)The core handler implementation for the 'get_writing_guide' tool, registered inline with the MCP server. It reads the 'guide-llm.md' file using ContentReader and returns its content as structured JSON text response, including error handling.server.tool( "get_writing_guide", "Get the Open Strategy Partners (OSP) writing guide and usage protocol for creating high-quality technical content. This guide provides systematic principles for narrative structure, flow, style, and technical accuracy.", async (_extra) => { try { const content = await contentReader.readMarkdownFile('guide-llm.md'); return { content: [{ type: "text", text: JSON.stringify({ success: true, data: { content } }) }] }; } catch (error) { return { content: [{ type: "text", text: JSON.stringify({ success: false, error: error instanceof Error ? error.message : String(error) }) }], isError: true }; } } );