Last active
November 30, 2025 03:50
-
-
Save JenHsuan/292aa6ea03d1aa81c1e500df45591f56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "$schema": "node_modules/wrangler/config-schema.json", | |
| "name": "alayman-mcp-server", | |
| "main": "src/index.ts", | |
| "compatibility_date": "2025-01-29", | |
| "compatibility_flags": ["nodejs_compat"], | |
| "migrations": [ | |
| { | |
| "new_sqlite_classes": ["AlaymanMCP"], | |
| "tag": "v1" | |
| } | |
| ], | |
| "durable_objects": { | |
| "bindings": [ | |
| { | |
| "class_name": "AlaymanMCP", | |
| "name": "MCP_OBJECT" | |
| } | |
| ] | |
| }, | |
| "observability": { | |
| "enabled": true | |
| }, | |
| "ratelimits": [ | |
| { | |
| "name": "RATE_LIMITER", | |
| "namespace_id": "1001", | |
| "simple": { | |
| "limit": 60, | |
| "period": 60 | |
| } | |
| } | |
| ], | |
| "vars": { | |
| "ARTICLES_API_URL": "https://example.com/api" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment