scorecard-ai-mcp 1.0.0-alpha.5 → 1.0.0-alpha.6

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/README.md CHANGED
@@ -9,7 +9,7 @@ It is generated with [Stainless](https://www.stainless.com/).
9
9
  You can run the MCP Server directly via `npx`:
10
10
 
11
11
  ```sh
12
- export SCORECARD_API_KEY="My Bearer Token"
12
+ export SCORECARD_API_KEY="My API Key"
13
13
  npx -y scorecard-ai-mcp
14
14
  ```
15
15
 
@@ -27,7 +27,7 @@ For clients with a configuration JSON, it might look something like this:
27
27
  "command": "npx",
28
28
  "args": ["-y", "scorecard-ai-mcp", "--client=claude"],
29
29
  "env": {
30
- "SCORECARD_API_KEY": "My Bearer Token"
30
+ "SCORECARD_API_KEY": "My API Key"
31
31
  }
32
32
  }
33
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scorecard-ai-mcp",
3
- "version": "1.0.0-alpha.5",
3
+ "version": "1.0.0-alpha.6",
4
4
  "description": "The official MCP Server for the Scorecard API",
5
5
  "author": "Scorecard <team@scorecard.io>",
6
6
  "types": "./index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "fix": "eslint --fix --ext ts,js ."
25
25
  },
26
26
  "dependencies": {
27
- "scorecard-ai": "^1.0.0-alpha.5",
27
+ "scorecard-ai": "^1.0.0-alpha.6",
28
28
  "@modelcontextprotocol/sdk": "^1.6.1",
29
29
  "yargs": "^17.7.2"
30
30
  },
package/server.js CHANGED
@@ -17,7 +17,7 @@ Object.defineProperty(exports, "endpoints", { enumerable: true, get: function ()
17
17
  // Create server instance
18
18
  exports.server = new mcp_js_1.McpServer({
19
19
  name: 'scorecard_ai_api',
20
- version: '1.0.0-alpha.5',
20
+ version: '1.0.0-alpha.6',
21
21
  }, {
22
22
  capabilities: {
23
23
  tools: {},
package/server.mjs CHANGED
@@ -8,7 +8,7 @@ export { endpoints } from "./tools.mjs";
8
8
  // Create server instance
9
9
  export const server = new McpServer({
10
10
  name: 'scorecard_ai_api',
11
- version: '1.0.0-alpha.5',
11
+ version: '1.0.0-alpha.6',
12
12
  }, {
13
13
  capabilities: {
14
14
  tools: {},
package/src/server.ts CHANGED
@@ -12,7 +12,7 @@ export { endpoints } from './tools';
12
12
  export const server = new McpServer(
13
13
  {
14
14
  name: 'scorecard_ai_api',
15
- version: '1.0.0-alpha.5',
15
+ version: '1.0.0-alpha.6',
16
16
  },
17
17
  {
18
18
  capabilities: {