@uteamup/mcp-server 1.0.0-beta.2 → 1.0.0-beta.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/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.0-beta.3] - 2026-02-10
9
+
10
+ ### Fixed
11
+ - **CRITICAL:** Added `Accept: application/json, text/event-stream` header to MCP requests
12
+ - Backend requires both content types for HTTP transport compatibility
13
+ - Fixes HTTP 406 "Not Acceptable" error
14
+ - Enables proper MCP endpoint communication
15
+
8
16
  ## [1.0.0-beta.2] - 2026-02-10
9
17
 
10
18
  ### Fixed
package/index.js CHANGED
@@ -185,6 +185,7 @@ async function forwardRequest(request) {
185
185
  headers: {
186
186
  'Authorization': `Bearer ${token}`,
187
187
  'Content-Type': 'application/json',
188
+ 'Accept': 'application/json, text/event-stream',
188
189
  'Content-Length': Buffer.byteLength(data)
189
190
  },
190
191
  rejectUnauthorized: false
@@ -245,7 +246,7 @@ async function main() {
245
246
  }
246
247
 
247
248
  console.error('[MCP Proxy] Starting UteamUP MCP Server');
248
- console.error(`[MCP Proxy] Version: 1.0.0-beta.2`);
249
+ console.error(`[MCP Proxy] Version: 1.0.0-beta.3`);
249
250
  console.error(`[MCP Proxy] Base URL: ${BASE_URL}`);
250
251
  console.error(`[MCP Proxy] API Key: ${API_KEY.substring(0, 8)}...`);
251
252
  console.error(`[MCP Proxy] Debug: ${DEBUG ? 'enabled' : 'disabled'}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uteamup/mcp-server",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "MCP server client for UteamUP - enables Claude Desktop/Code integration with automatic OAuth 2.0 authentication",
5
5
  "main": "index.js",
6
6
  "bin": {