Austin, SWE at Serval and Philipp, SWE at Serval
Automation tools have been around for decades. Serval changes the math on when it’s worth reaching for them - by making tasks easier to automate than do manually once.

Michael Schmidt submits a ticket: "Everyone calls me Mike – can you point mike@northwind.com at my account?" Mike's in a rush, so you set up the alias manually, real quick. But it's the third alias request this week. Should you just automate it?
IT teams hit this question constantly. What if building the automation takes two hours? What if the volume drops off next week? Is automating still worth it then?
At Serval, we made a critical observation early on: teams only reliably reach for automation when it's the easiest path – when automating a task forever is faster than doing it by hand even a single time. Get below that break-even line, and automation stops being a project and becomes the default.
From Workflow Builder to Catalyst
So we decided to do the hard thing: make our workflows just code, build a platform to run them, and build an agent to write them. We called the agent Workflow Builder, and it could turn a plain-English description into a working workflow - for the first time, writing the automation was easier than doing the task by hand once.

After a year in production, we saw it clearly: building the workflow is the bulk of the work in automating a task – and Workflow Builder had largely solved it. But: it isn't the whole job. So why stop there? Why not make every step of setting Serval up for your needs as fast and easy as writing the workflow had become?
That's why we're working on Catalyst: an agent that handles your entire Serval setup – integration, permissions, triggers, the workflow itself, and everything in between, all at once – so going from "I need this automated" to a working automation becomes a single step.
Catalyzing your Serval setup
Take Mike's alias request again. Northwind Inc. just onboarded onto Serval, and their Google Workspace integration isn't even connected yet. Before a single alias gets created, someone has to wire up the integration, set the right permissions, build the workflow, and add a skill so the next request like this routes itself automatically. Four pieces of work, four different parts of the product. Workflow Builder already made one of those easy. Catalyst's goal: make all four easy, for any problem. You describe what you want automated; Catalyst handles the rest.
While planning Catalyst, we kept coming back to three questions: How can we enable Catalyst to operate on everything in Serval? How do we let an agent make real changes to your setup without putting you at risk? And what's the right technical foundation to bet on for the long run?
Anything a user can do, Catalyst can do
With Catalyst, we wanted to make as many tasks as possible easier to automate than to do manually once. When starting the project, we asked what it would take to make that true for every task in Serval. If Catalyst could cover all of the configuration surface area, users would no longer have to think about where to go when they open up Serval. The vision was clear: when a user needs something done, they go to Catalyst. Anything short of that is a missed opportunity to automate a task and make a user's life easier. This realization led us to the guiding principle that Catalyst must do everything a user can do.
To let Catalyst do everything a user can, we give it access to the same tools a user has. It reads the same documentation, hits the same endpoints, and is granted the same permissions as the user messaging with it. Catalyst has complete product knowledge because it has access to public documentation. Any feature added to the platform is added to the docs, and Catalyst instantly knows about it. Relying on public docs has also made them better: when Catalyst is confused about a feature, we know the docs are not clear enough, and we fix the docs instead of some hidden prompt. As Catalyst's product knowledge improves, so must our documentation.
We use the same principle for how Catalyst takes action on the system: what is useful for people is useful for Catalyst. Most of Catalyst's tools are based on existing user-facing endpoints. When we release new product features, we add any new endpoints as tools for Catalyst, and it is immediately capable of configuring those features.
Catalyst is authorized to take the same actions as the user because it uses an auth token from the user who sent the message. Before a message is handed off to Catalyst, a token is minted with the same permissions as that user, and it is added to the header of requests coming from tool calls.
Catalyst is very capable, but responsible IT leaders would not let any AI agent loose to make changes on critical systems. To address this, we built a robust review system that keeps a human in control of every change that gets made.
Keep humans in the driver’s seat
In Serval, adding a workflow expands what employees can do through the help desk; publishing a skill changes how your employee-facing agent behaves. In production, changes like these carry real consequences. That's the tension with Catalyst: the same reach that makes it useful, namely acting quickly across your whole setup, is what makes unreviewed changes dangerous. So a core design principle is that Catalyst stages changes for review rather than applying them directly: in the end a human decides what ships.
Making those drafts easy to review and iterate on is its own design problem. But coding agents have already solved it well, so when building Catalyst we borrowed from their design language. Catalyst collects everything it's proposing into a single list of changes across resource types, and opens each changed resource in its own tab for closer review.

Today in Beta, Catalyst stages changes this way for Workflows, Skills, and Dashboards, though our ambition is for every Serval resource to eventually be drafted and reviewed this way.
Getting there was a real technical challenge — and it forced us to treat Catalyst not as a feature but as a platform the rest of the company builds on. Resource types cover different parts of the product and are owned by different individuals on the team, yet the review experience has to stay consistent and the system tracking these changes has to stay maintainable and extensible as new resource types are added.
We solved this by splitting the staging system in two. A shared core handles the generic plumbing: storing a staged change and running the publish step, regardless of what's changing. Each resource type plugs in the specifics: what its data looks like, and what publishing actually does for that resource. The frontend mirrors this split, with one general pipeline pulling staged changes from the backend and per-resource code rendering each resource's tab and its row in the change list.
At some companies, whoever drafts a change should also be able to publish it. At others, organizational or legal constraints require those to be two different people. For that, Catalyst can require a second person to sign off. The change goes through a pull-request-style review, and a different team member approves it before it can be applied.

The same principle covers Catalyst's own actions while it works. To read from or make changes in third-party systems, Catalyst can write and run a workflow on the spot, called a Temporary Workflow. Reads run freely, but if one would mutate an external system, it needs your approval first, just like any other change.
That leaves the last of our three questions: what's the right technical foundation to bet on for the long run?
Build on the most promising platform
The bet at the heart of the company has always been that automations should be code, because AI was going to get very good at writing code. Workflow Builder rode that bet: as models got better at code generation, so did our ability to turn a description of a task into a workflow. However, the enormous leaps in AI coding haven't come from better models alone. They've come from harnesses like Claude code: file-system-based agent loops that can operate on files and run commands. Underneath, Workflow Builder ran on a simple proto-harness with no file system, capable of just a single completion per turn. This held it back because it forced the Workflow Builder to keep all of the docs, code, and messages in context. Building Catalyst on a modern harness has allowed us to continue to capture the benefits of improved AI coding.
Using a file-system based harness didn’t just make workflows better. Coding agents fundamentally just manipulate files, and nearly everything in Serval can be serialized as a file. A workflow is TypeScript code. A skill is markdown. Integrations, access policies, assignment rules, and every other resource serialize cleanly to a format like JSON. So a file-system agent isn't only good at writing workflows: it can operate on the entire surface area of the product by treating each piece as a file to read and edit.
A file system unlocked something else we'd been missing: a sandbox. Many of the actions you would want an agent to take – searching API docs with grep, generating a PDF, running a quick script to parse a large file – require a place to actually execute commands. Workflow Builder had no such environment. Catalyst does, and that opens up a far wider range of things it can do on your behalf.
What lies ahead
An exciting part of shipping Catalyst has been watching what the team wants to do with it next. Almost as soon as it was in people's hands, the ideas started pouring in and haven't stopped. We want to give a sneak peek of some of them here.
One direction is agents that run proactively in the background. Catalyst can already operate across all of Serval and pull from both your Serval data and your connected systems, so it doesn't always need you to kick the work off. You could set a standing prompt for something you want handled on a cadence, and a Catalyst-powered agent would do the work and bring the result back for you to review. We're also building preset agent configurations for common cases, usable both inside Serval and out. Our favorite so far has been the ‘Proactive Device & Endpoint Remediation’ which scans your device fleet for performance issues and security risks via whichever MDM you have integrated. It surfaces findings before they become a problem.
Another direction is using Catalyst to smooth onboarding for new customers. A short intake form captures how a customer plans to use Serval, and Catalyst builds out their common automations before they ever log in. We have now had deals close in under a week because we can get Serval automating requests after just an intro call.
So what will you build with Catalyst?
Mike's alias request was just the starting point. An agent that can set up anything in Serval, with a human in the loop to review the changes, is good for far more than aliases: standing up an onboarding flow for a new hire, wiring a new integration end to end, turning a messy runbook into a skill the agent follows, or building the dashboard someone asked for in passing. We're excited to see what you will build with Catalyst.

Introducing Catalyst: Automating a task forever should be easier than doing it manually once
Automation tools have been around for decades. Serval changes the math on when it’s worth reaching for them - by making tasks easier to automate than do manually once.

Carl Eschenbach's Blueprint for Building Lasting Companies in the AI Era
From scaling VMware to $7B and serving as the CEO of Workday to investing in the future as a partner at Sequoia, Carl Eschenbach shares the principles he's carried across four decades of building and scaling enterprise technology's most enduring companies.

Hire High-Agency People
I have 11 direct reports, while our CTO Alex has somewhere around 30, and I expect those numbers to increase as our team grows.

Do the hard things, always
How Serval is building a universal automation platform to eliminate manual operational work across companies.

Serval’s Three Operating Principles
We don't have a culture deck. We have three operating principles.

Introducing Serval Start: A New Path for Aspiring Founders
A two-year program for builders who want to become founders — before they have a company to build.

Following the Founders: Why I Joined Serval
Founding Engineer, Kaz Hishida, tells the story of why he joined Serval.

Partnering with Serval: Empowering IT for AI Enterprise Automation
Jake, Alex and their team are giving IT teams the power to bring AI automation from their own department to every part of the organization.

Serval’s Next Chapter: Raising $75M to Build the New Era of Enterprise Automation and Service Management
We helped customers automate more than 50% of their tickets. Sequoia took notice.

Introducing Serval's AI-native access management
Serval's AI-native access management centralizes operations and improves security for IT and security teams

Gartner IT Symposium Recap: Why it matters that Serval is AI-native
Serval's AI native infrastructure provides huge benefits over legacy ITSM platforms.

General Catalyst Article: Doubling Down on Serval: Building Intelligent IT Agents for the AI Era
Investor, General Catalyst posts about Serval's Series A launch

TechCrunch Article: Serval raises $47M to bring AI agents to IT service management
TechCrunch announces Serval's Series A

Announcing $52M Total Raised to Deploy AI Agents for IT
Serval adds $47M in Series A funding, led by Redpoint Ventures with participation from First Round, General Catalyst, Box Group, Bessemer Venture Partners, Chemistry, and others.

Automate 80% of IT tickets in 24 hrs
At JNUC 2025, Serval CEO Jake Stauch showed how IT teams use Serval’s AI agents to automate 80% of help desk tickets in 24 hours. From access requests to onboarding to Jamf-specific workflows. The session highlighted how Serval unifies ITSM, workflow automation, and access management into one secure, AI-native platform used by companies like Perplexity and Verkada.

Oktane Takeaways: Serval + Okta for AI-Native Automation
How Serval works seamlessly for Okta customers

AI Agents for IT: Vibe Coding Verkada Automations with Serval
You don’t need to code to build the Verkada workflows of your dreams. Build automations from natural language prompts, unlocking the potential of Verkada’s APIs.

New Integrations for Enterprise IT: Microsoft, ServiceNow & Workday
Serval integrating with Microsoft, ServiceNow & Workday to support enterprise IT

Introducing Prebuilt Workflows
Installable, ready-made workflows for easier onboarding

Introducing Slack Shortcuts and Manual Ticket Creation
New tools for creating tickets in Serval

Introducing Manager and Multi-step Approvals
New approval features ensure robust controls over AI tool access

Is this the end of IT tickets?
See how IT ticketing is evolving with the deployment of AI agents

Serval Team Member Spotlight: Teddy Wahle
Celebrating Teddy's achievements

Introducing Serval Silent Mode
Keep Serval AI in the background and tag for help when needed

Introducing AI Feedback
Collect user feedback on Serval's AI agent and track changes in a real-time dashboard

Introducing Serval's New Public API
Create tickets from anywhere, embed AI resolutions, and sync users at scale with a single set of REST endpoints and webhooks.

Introducing Serval Integration with Jira Service Management, Freshservice, and Linear
Take advantage of Serval's AI capabilities without replacing your existing ticketing system

Introducing Private Serval Messages with Team Routing
Your own private help desk - for all your requests

Introducing Tasks in Serval Tickets
Say goodbye to Jira checkboxes. Serval tickets now track manual tasks.

Introducing GitHub Automations
Automate GitHub PRs and more from a help desk request

Serval Team Member Spotlight: Derrick Liu
Celebrating Derrick's achievements

Introducing Third Party Knowledge Base Integration
Serval's AI agent answers employee questions using docs from Notion, Confluence, etc.

Introducing Request on Behalf Of
Run workflows on behalf of other users - with approval

The Difference between Automation and Deflection in the Help Desk
They not like us

Migrating from Jira Service Management to Serval
It's easier than ever to modernize your ITSM

AI to Help Humans Work Better - Not Take Jobs
AI enables otherwise impractical best practices in IT and security

Introducing Ticket Auto Updates
"Quiet AI" for the modern ITSM

Introducing Serval’s AI-Powered Email Help Desk
AI resolutions to any help desk request over email

Serval Team Member Spotlight: Sebastien Lajeunesse-deGroot
Celebrating Sebastien's achievements at Serval

Introducing Email Support, Internal Notes, Merging, and Image Attachments
Latest features add more capabilities for Serval ITSM

Serval Copilot
AI superpowers for human agents

Introducing Image Recognition
Serval now diagnoses and resolves help desk requests from a screenshot

Serval Team Spotlight: Kaz Hishida
Celebrating Kaz's achievements at Serval

AI Insights
Serval AI categorizes historical tickets and highlights automation opportunities

Making IT Automation Safe and Secure
Guardrails are key to deploying AI in the ITSM

Analytics, Public API, and Serval for Serval Automations
Latest updates for Serval power users

Natural Language Approvals, Automated Knowledge Base Updates, and Version Control
New features for help desk automation

Automating the Automation for IT
Natural language workflow builder eliminates friction in building IT automations

Introducing Serval
AI to give IT superpowers

Serval Achieves SOC 2 Type 2 Compliance
Continuing our commitment to data security

Scheduled Workflows
Run workflows on a recurring schedule