tRPC Typesafe API Integration
Workflow capability for integrating with tRPC-based backends. tRPC enables end-to-end typesafe APIs for TypeScript applications using HTTP as the transport. This capability supports calling tRPC query and mutation procedures via the standard HTTP protocol, enabling AI agents and automation workflows to interact with tRPC servers without requiring TypeScript clients.
What You Can Do
MCP Tools
query-procedure
Invoke a tRPC query procedure by path. Queries are read-only and use HTTP GET. The procedure name uses dot notation for nested routers (e.g., 'user.getUser', 'post.list').
mutation-procedure
Invoke a tRPC mutation procedure by path. Mutations cause side effects and use HTTP POST. The procedure name uses dot notation (e.g., 'user.createUser', 'post.delete').
batch-procedures
Execute multiple tRPC procedures in a single HTTP request. tRPC clients use batching automatically via httpBatchLink.
health-check
Check the health of a tRPC server