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 +2 -2
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
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
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
20
|
+
version: '1.0.0-alpha.6',
|
|
21
21
|
}, {
|
|
22
22
|
capabilities: {
|
|
23
23
|
tools: {},
|
package/server.mjs
CHANGED