A plugin for oRPC to limit the request body size.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add ali-master/skills --skill orpc-body-limit --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Orpc Body Limit?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ali-master-orpc-body-limit)More formats (shields.io, HTML) on the badges page.
---
name: oRPC Body Limit Plugin
description: A plugin for oRPC to limit the request body size.
license: MIT
metadata:
author: Ali Torki
homepage: https://github.com/ali-master
version: "1.0.0"
---
# Body Limit Plugin
The **Body Limit Plugin** restricts the size of the request body.
## Import
```ts
import { BodyLimitPlugin } from '@orpc/server/fetch'
import { BodyLimitPlugin } from '@orpc/server/node'
```
## Setup
```ts
const handler = new RPCHandler(router, {
plugins: [
new BodyLimitPlugin({
maxBodySize: 1024 * 1024, // 1MB
}),
],
})
```
> The `handler` can be any supported oRPC handler — `RPCHandler`, `OpenAPIHandler`, or a custom handler.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!