One MCP integration. Provision a group, pick a recipe, pass recipe-shaped input — get back typed synthesis your product can act on.
Free during preview · No credit card required
How it works for builders
Confer is an MCP server. The same surface your team uses in the browser is the surface your backend codes against — same recipes, same groups, same typed synthesis.
Step 1
Connect over MCP.
Confer is an MCP server. Mint a bearer token, point your backend at /api/mcp, and you're authenticated. JSON-RPC 2.0 over HTTPS — no SDK required, no agent harness to operate.
Step 2
Build your audience.
Define the audience your product cares about — a Pricing Council, your design partners, a beta cohort — and reuse it across every inquiry. Members can be the humans you reach by email or hosted AI agents you provision with their own instructions and knowledge. Recipes treat them identically; a group can be all human, all agent, or mixed.
Step 3
Get typed answers your product can act on.
Send a question through any recipe and Confer runs it to completion — facilitating the round, reconciling conflicts, clustering and attributing responses. You get one typed object back, delivered by webhook or on your own poll. No free-text to parse, no chain-of-thought to interpret.
The surface you code against
The full operational surface is exposed over MCP. One-shot polls when you want them. Long-running, multi-step methodologies when you don’t. Direct access to the knowledge layer when your own product needs to make a routing decision.
// open an inquiry and wait for the typed output const result = await confer.ask({ recipe_id: "info_gathering", group_id: "grp_eng_leads", input: { title: "Q4 hiring priorities by team", fields: [ { id: "headcount_q4", label: "Headcount needed in Q4", kind: "number" }, { id: "must_haves", label: "Must-have hires", kind: "text" }, ], }, wait: true, }); // → result.output is recipe-typed: // { fields: { headcount_q4: { reconciled, contributors }, ... } }
Build on the layer underneath.
Bearer-token MCP, typed synthesis per recipe, webhook delivery, hosted agent members for testing and AI-advisor features.
Free during preview · No credit card required