MCP server for Offorte - Create & send proposals using AI. This server acts as the bridge between AI agents and Offorte's proposal engine. It enables external models to create and send proposals via Offorte. Built for automation workflows, the MCP makes it easy to integrate proposal actions into AI tools, chat interfaces, and autonomous systems. - About Offorte - Goals \& Coverage - Prerequisites
Add this skill
npx mdskills install offorte/offorte-mcp-serverWell-documented MCP server with comprehensive proposal workflow tools and clear setup instructions
1# Offorte MCP Server <!-- omit in toc -->23MCP server for Offorte - Create & send proposals using AI.45This server acts as the bridge between AI agents and Offorte's proposal engine.6It enables external models to create and send proposals via Offorte.7Built for automation workflows, the [MCP](https://modelcontextprotocol.io/) makes it easy to integrate proposal actions into AI tools, chat interfaces, and autonomous systems.89> **Early technology**10> Please note that MCP (Model Context Protocol) is a new approach to AI integration.11> While powerful, it's still evolving and may occasionally produce unexpected or undesired results.1213## Table of Contents <!-- omit in toc -->1415- [About Offorte](#about-offorte)16- [Goals \& Coverage](#goals--coverage)17- [Prerequisites](#prerequisites)18- [Available Tools](#available-tools)19- [MCP Clients](#mcp-clients)20- [Development](#development)2122## About Offorte2324Offorte is automated proposal software which helps businesses create, send, and track beautiful interactive proposals.25Built for speed, flexibility, and real-world use, it combines automation and smart workflows without sacrificing the personal touch.26[Learn more about Offorte](https://www.offorte.com).2728### API <!-- omit in toc -->2930The MCP server is using the Offorte Public API v2.31Read the [API documentation](https://www.offorte.com/api-docs/) for more information.3233### Demo <!-- omit in toc -->3435Experience the future of proposals: voice-triggered, AI-powered, fully automated.36See how Offorte connects voice and workflow in [this real demo](https://www.offorte.com/en/blog/proposal-software/handsfree-proposal-sending-with-mcp).3738## Goals & Coverage3940The goal of this project is too create & send proposals using AI via the protocol.41Because of the experimental character, the full Offorte API is not covered and its limited to the tools needed to create & send proposals.42Tools which could lead to an LLM updating and deleting stuff are not yet implemented.43Update and delete commands might be added in the future, based on reallife results & user feedback.4445## Prerequisites4647- Node.js (tested with Node.js `20.x.x`)48- Offorte API Key (see [Authentication Section](https://www.offorte.com/api-docs/authentication#api-keys) of the Offorte API Docs)49- PNPM for development50- `TRANSPORT_TYPE` (optional): Set to `sse` to enable Server-Sent Events (SSE) mode, or leave unset/default for `stdio` (default: `stdio`).5152## Available Tools5354### Context & Setup <!-- omit in toc -->5556- **get_initial_context** – **IMPORTANT:** Must be called before using any other tools to initialize context and get usage instructions5758### Account <!-- omit in toc -->5960- **get_users** – Lists all account users for the current account6162### Automations <!-- omit in toc -->6364- **get_automation_sets** – Lists automation sets which are used as an optional input to create a new proposal6566### Contacts <!-- omit in toc -->6768- **create_contact** – Create a new contact (organisation or person/individual)69- **get_contact_details** - Get all details for a contact by id70- **search_contact_organisations** - Search for organisations by name in the contacts71- **search_contact_people** - Search for people by name in the contacts7273### Favorites <!-- omit in toc -->7475- **get_proposal_templates** – Lists proposal templates which are used as starting points to create new proposals7677### Proposals <!-- omit in toc -->7879- **create_proposal** – Create a new proposal80- **get_proposal_directories** – Get all proposal directories grouped by status81- **search_proposals** – Search for proposals by query82- **send_proposal** – Send a proposal to its assigned contacts8384### Settings <!-- omit in toc -->8586- **get_design_templates** – Lists available design templates which are used to create new proposals87- **get_email_templates** – Lists available email templates which are used to send proposals88- **get_text_templates** – Lists available language text templates which are used to create new proposals8990## MCP Clients9192Currently, this MCP server has only been tested with Claude Desktop.93More client examples will be added in the future.9495### Claude Desktop Configuration <!-- omit in toc -->9697Find your `claude_desktop_config.json` at `Claude > Settings > Developer > Edit Config` and depending on which option you'd like, add **JUST ONE** of the following:9899#### NPX <!-- omit in toc -->100101Running it straight from the npm registry.102103```json104{105 "mcpServers": {106 "offorte-proposals": {107 "command": "npx",108 "args": ["-y", "@offorte/mcp-server"],109 "env": {110 "OFFORTE_ACCOUNT_NAME": "<YOUR_ACCOUNT_NAME>",111 "OFFORTE_API_KEY": "<YOUR_TOKEN>"112 }113 }114 }115}116```117118#### Local Node <!-- omit in toc -->119120Dependencies should have been installed & the project is build before you use this method (`pnpm install`).121122```json123{124 "mcpServers": {125 "offorte-proposals": {126 "command": "node",127 "args": ["/path/to/directory/offorte-mcp-server/dist/server.js"],128 "env": {129 "OFFORTE_ACCOUNT_NAME": "<YOUR_ACCOUNT_NAME>",130 "OFFORTE_API_KEY": "<YOUR_TOKEN>"131 }132 }133 }134}135```136137## Development138139To get started, clone the repository and install the dependencies.140Make sure you have an .env file and it includes the proper values.141142```bash143git clone https://github.com/offorte/offorte-mcp-server.git144cd offorte-mcp-server145pnpm install146pnpm dev147```148149### Commands <!-- omit in toc -->150151Check the NPM scripts for all commands, below is a short summary of the most important onces.152153| Script | Info |154| -------------- | ------------------------------------- |155| `pnpm build` | Build the project for production |156| `pnpm start` | Start the production server |157| `pnpm dev` | Start the development server |158| `pnpm inspect` | Inspect the server |159| `pnpm format` | Format code using Prettier and ESLint |160
Full transparency — inspect the skill content before installing.