@mctx-ai/mcp-server 0.5.2 → 0.5.3

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.
package/dist/server.js CHANGED
@@ -28,7 +28,7 @@ import {
28
28
  * - X-Frame-Options: Prevents clickjacking
29
29
  */
30
30
  const SECURITY_HEADERS = {
31
- "Content-Type": "application/json",
31
+ "Content-Type": "application/json; charset=utf-8",
32
32
  "X-Content-Type-Options": "nosniff",
33
33
  "Content-Security-Policy": "default-src 'none'",
34
34
  "X-Frame-Options": "DENY",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mctx-ai/mcp-server",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Build MCP servers with an Express-like API — no protocol knowledge required",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
package/src/server.js CHANGED
@@ -28,7 +28,7 @@ import {
28
28
  * - X-Frame-Options: Prevents clickjacking
29
29
  */
30
30
  const SECURITY_HEADERS = {
31
- "Content-Type": "application/json",
31
+ "Content-Type": "application/json; charset=utf-8",
32
32
  "X-Content-Type-Options": "nosniff",
33
33
  "Content-Security-Policy": "default-src 'none'",
34
34
  "X-Frame-Options": "DENY",