Skip to main content
Glama

get_writing_guide

Access the Open Strategy Partners writing guide and editing protocols to improve technical content and product positioning using established methodologies.

Instructions

Get the Open Strategy Partners (OSP) writing guide and usage protocol for editing texts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'get_writing_guide' tool. It reads the OSP writing guide from 'guide-llm.md' and returns it, with error handling for missing file.
    @mcp.tool() async def get_writing_guide() -> dict: """Get the Open Strategy Partners (OSP) writing guide and usage protocol for editing texts.""" script_dir = os.path.dirname(os.path.abspath(__file__)) try: with open(os.path.join(script_dir, 'guide-llm.md'), 'r') as f: content = f.read() return { "success": True, "data": { "content": content } } except FileNotFoundError: return { "success": False, "error": "Required file 'writing-llm.md' not found in script directory" }
  • Registers the get_writing_guide function as an MCP tool using the FastMCP decorator.
    @mcp.tool()

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/open-strategy-partners/osp_marketing_tools'

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