Skip to content

Commit 5c13668

Browse files
committed
fix: correct API key format by adding Bearer prefix in manifest
- Changed HTTP_AUTHORIZATION to automatically prepend "Bearer " to the API key - Updated API key description and placeholder to clarify users should provide only the key without Bearer prefix - Bumped version to 1.1.3
1 parent 669e7b2 commit 5c13668

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bundle/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"https://mcp.pfx.ch/api/server"
3939
],
4040
"env": {
41-
"HTTP_AUTHORIZATION": "${user_config.api_key}",
41+
"HTTP_AUTHORIZATION": "Bearer ${user_config.api_key}",
4242
"PROFFIX_USERNAME": "${user_config.proffix_username}",
4343
"PROFFIX_PASSWORD": "${user_config.proffix_password}",
4444
"PROFFIX_URL": "${user_config.proffix_url}",
@@ -51,10 +51,10 @@
5151
"api_key": {
5252
"type": "string",
5353
"title": "API Key",
54-
"description": "Your pfx MCP Server API Key (get it free at https://mcp.pfx.ch/request-api-key.html)",
54+
"description": "Your pfx MCP Server API Key - just the key without 'Bearer' prefix (get it free at https://mcp.pfx.ch/request-api-key.html)",
5555
"sensitive": true,
5656
"required": true,
57-
"default": "Bearer "
57+
"placeholder": "pfx_..."
5858
},
5959
"proffix_username": {
6060
"type": "string",

server.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/pitwch/pfx-mcp-server",
88
"source": "github"
99
},
10-
"version": "1.1.2",
10+
"version": "1.1.3",
1111
"remotes": [
1212
{
1313
"type": "streamable-http",

0 commit comments

Comments
 (0)