open-mcp-app 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14252,7 +14252,7 @@ var App = class {
14252
14252
  // ==========================================================================
14253
14253
  createExpressApp() {
14254
14254
  const app = express();
14255
- app.use(express.json());
14255
+ app.use(express.json({ limit: "50mb" }));
14256
14256
  app.use((req, res, next) => {
14257
14257
  res.setHeader("Access-Control-Allow-Origin", "*");
14258
14258
  res.setHeader("Access-Control-Allow-Methods", "GET, POST, DELETE, OPTIONS");