From spec to production MCP server
Point Hintas at your OpenAPI specs. It extracts the multi-step workflows hiding inside, validates them against staging, and deploys a production-ready MCP server your agents call with two tools — search and execute.
247
Endpoints parsed
from a single spec
12
Workflows extracted
multi-step patterns
2
MCP tools deployed
search + execute
Exposing raw endpoints to agents doesn't work
One tool per endpoint gives agents verbs with no coordination. They guess ordering, miss failures, and can't roll back.
Two tools, in detail
Same MCP contract every Hintas deployment ships. Two functions, one safe lane.
search
Natural-language discovery. The agent describes intent; Hintas returns the matching workflow's id, ordered steps, and required parameters.
hintas.search({
"query": "Onboard user to engineering team",
"pattern": "onboard|provision|setup"
})execute
Validated execution. The agent passes a workflow id and inputs. Hintas runs the sequence, enforces dependencies, and rolls back on failure.
hintas.execute({
"workflow": "provision-user-onboarding",
"params": { "userId": "usr_7291", "team": "eng" }
})