get_value_map_positioning_guide
Generate product positioning guides with value maps, feature extraction, and taglines using Open Strategy Partners methodologies.
Instructions
Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning (value cases, feature extraction, taglines).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/osp_marketing_tools/server.py:87-104 (handler)Handler function for the 'get_value_map_positioning_guide' tool. Decorated with @mcp.tool() for registration. Reads and returns the content of 'product-value-map-llm.md' or an error if not found.@mcp.tool() async def get_value_map_positioning_guide() -> dict: """Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning (value cases, feature extraction, taglines).""" script_dir = os.path.dirname(os.path.abspath(__file__)) try: with open(os.path.join(script_dir, 'product-value-map-llm.md'), 'r') as f: content = f.read() return { "success": True, "data": { "content": content } } except FileNotFoundError: return { "success": False, "error": "Required file 'product-value-map-llm.md' not found in script directory" }