← WebMCP Directory

Tool tree

vespper.com

Developer Tools
https://www.vespper.com/
Vespper DOCX MCP lets agents read .docx files as HTML and apply edits as Word tracked changes. Two tools, complete OOXML abstraction.
Explore capabilities

Tools verified

ask_siteAnswer

Find relevant Vespper product, setup, security, benchmark, FAQ, documentation, and blog information. Use it to answer questions about Vespper or DOCX agent workflows. Returns matching excerpts and their site paths.

View tool JSON
{
  "name": "ask_site",
  "kind": "answer",
  "impl": "imperative",
  "description": "Find relevant Vespper product, setup, security, benchmark, FAQ, documentation, and blog information. Use it to answer questions about Vespper or DOCX agent workflows. Returns matching excerpts and their site paths.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "minLength": 2,
        "description": "The visitor's question or topic"
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
}
browse_blogAnswer

Discover Vespper blog articles by topic or category. Use it to find research, benchmarks, engineering, or product writing. Returns article summaries, publication dates, reading times, and site paths.

View tool JSON
{
  "name": "browse_blog",
  "kind": "answer",
  "impl": "imperative",
  "description": "Discover Vespper blog articles by topic or category. Use it to find research, benchmarks, engineering, or product writing. Returns article summaries, publication dates, reading times, and site paths.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Optional topic keywords"
      },
      "category": {
        "type": "string",
        "enum": [
          "Research",
          "Benchmarks",
          "Engineering",
          "Product"
        ],
        "description": "Optional article category"
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 10,
        "default": 5
      }
    },
    "additionalProperties": false
  }
}
calculate_roiAction

Calculate estimated annual savings, engineering hours reclaimed, and delivery acceleration from Vespper's ROI model. Use when evaluating DOCX integration costs. Updates the visible homepage calculator and returns its estimates.

View tool JSON
{
  "name": "calculate_roi",
  "kind": "act",
  "impl": "imperative",
  "description": "Calculate estimated annual savings, engineering hours reclaimed, and delivery acceleration from Vespper's ROI model. Use when evaluating DOCX integration costs. Updates the visible homepage calculator and returns its estimates.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "hourlyCost": {
        "type": "number",
        "minimum": 50,
        "maximum": 400,
        "description": "Engineering cost per hour in USD"
      },
      "weeklyHours": {
        "type": "number",
        "minimum": 2,
        "maximum": 160,
        "description": "Weekly DOCX maintenance hours"
      },
      "weeksSaved": {
        "type": "number",
        "minimum": 1,
        "maximum": 52,
        "description": "Implementation weeks saved"
      }
    },
    "required": [
      "hourlyCost",
      "weeklyHours",
      "weeksSaved"
    ],
    "additionalProperties": false
  }
}
get_mcp_setupAnswer

Get the hosted Vespper DOCX MCP endpoint, authentication requirements, client configuration, and official setup links. Use it when connecting an MCP client. Returns a safe template with no credentials embedded.

View tool JSON
{
  "name": "get_mcp_setup",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get the hosted Vespper DOCX MCP endpoint, authentication requirements, client configuration, and official setup links. Use it when connecting an MCP client. Returns a safe template with no credentials embedded.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "client": {
        "type": "string",
        "enum": [
          "cursor",
          "generic"
        ],
        "default": "generic",
        "description": "The MCP client being configured"
      }
    },
    "additionalProperties": false
  }
}