filesystem-mcp 1.2.2 → 1.3.0

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.
Files changed (2) hide show
  1. package/dist/main.js +1 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -29,7 +29,7 @@ const transport = process.env.MCP_TRANSPORT || 'stdio';
29
29
  }
30
30
  else if (transport === 'http') {
31
31
  const app = (0, express_1.default)();
32
- app.use(express_1.default.json());
32
+ app.use(express_1.default.json({ limit: '20mb' }));
33
33
  const port = parseInt(process.env.PORT || '3000', 10);
34
34
  const baseUrl = process.env.MCP_BASE_URL || `http://localhost:${port}`;
35
35
  app.post('/mcp', async (req, res) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "filesystem-mcp",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "MCP server for filesystem operations (view, create, edit files)",
5
5
  "license": "MIT",
6
6
  "author": "Adam Jones (domdomegg)",