Skip to main content
Glama
x51xxx

OSP Marketing Tools MCP Server

by x51xxx

get_value_map_positioning_guide

Generate structured product positioning guides, including taglines, value cases, personas, and feature hierarchies, using Open Strategy Partners' methodologies for effective marketing communication.

Instructions

Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning, including taglines, position statements, personas, value cases, and feature categorization in a structured hierarchy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler implementation for the 'get_value_map_positioning_guide' tool. Registers the tool with MCP server and defines the execution logic: reads 'product-value-map-llm.md' via ContentReader and returns structured JSON response or error.
    server.tool( "get_value_map_positioning_guide", "Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning, including taglines, position statements, personas, value cases, and feature categorization in a structured hierarchy.", async (_extra) => { try { const content = await contentReader.readMarkdownFile('product-value-map-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 }; } } );
  • Tool registration via server.tool() call within registerTools function, including name, description, and inline handler.
    server.tool( "get_value_map_positioning_guide", "Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning, including taglines, position statements, personas, value cases, and feature categorization in a structured hierarchy.", async (_extra) => { try { const content = await contentReader.readMarkdownFile('product-value-map-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 }; } } );

Other Tools

Related Tools

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