Skip to main content
Glama
x51xxx

OSP Marketing Tools MCP Server

by x51xxx

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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 }; } } );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/x51xxx/osp-marketing-tools-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server