@tradeos/tradeos-mcp-test 1.0.0-alpha.1 → 1.0.0-alpha.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tradeos/tradeos-mcp-test",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.2",
|
|
4
4
|
"description": "[TEST] stdio MCP bridge to TradeOS mcp-call (https://ai.tradeos.xyz). Publish as TradeOS-AI org member 0xFar777.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
"url": "git+https://github.com/TradeOS-AI/tradeos-mcp.git"
|
|
14
14
|
},
|
|
15
15
|
"bin": {
|
|
16
|
-
"tradeos-mcp-test": "
|
|
17
|
-
"tradeos-mcp-test-oauth": "
|
|
16
|
+
"tradeos-mcp-test": "bin/tradeos-mcp-test.js",
|
|
17
|
+
"tradeos-mcp-test-oauth": "bin/tradeos-mcp-test-oauth.js"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
|
+
"bin",
|
|
20
21
|
"build",
|
|
21
22
|
"scripts/fetch-token.mjs",
|
|
22
23
|
"server.json"
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"modelcontextprotocol",
|
|
37
38
|
"test"
|
|
38
39
|
],
|
|
39
|
-
"license": "
|
|
40
|
+
"license": "MIT",
|
|
40
41
|
"engines": {
|
|
41
42
|
"node": ">=18"
|
|
42
43
|
},
|
package/scripts/fetch-token.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Get TRADEOS_ACCESS_TOKEN via browser OAuth (PKCE + loopback callback).
|
|
4
4
|
*
|
|
5
5
|
* Usage:
|
|
6
|
-
* npx tradeos-mcp-test-oauth
|
|
6
|
+
* npx -y @tradeos/tradeos-mcp-test tradeos-mcp-test-oauth
|
|
7
7
|
* pnpm run oauth:token
|
|
8
8
|
*
|
|
9
9
|
* Opens browser → log in on TradeOS → prints access_token for .env
|
package/server.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://github.com/TradeOS-AI/tradeos-mcp",
|
|
9
9
|
"source": "github"
|
|
10
10
|
},
|
|
11
|
-
"version": "1.0.0-alpha.
|
|
11
|
+
"version": "1.0.0-alpha.2",
|
|
12
12
|
"remotes": [
|
|
13
13
|
{
|
|
14
14
|
"type": "streamable-http",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"registryType": "npm",
|
|
21
21
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
22
22
|
"identifier": "@tradeos/tradeos-mcp-test",
|
|
23
|
-
"version": "1.0.0-alpha.
|
|
23
|
+
"version": "1.0.0-alpha.2",
|
|
24
24
|
"runtimeHint": "npx",
|
|
25
25
|
"runtimeArguments": [
|
|
26
26
|
{
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"environmentVariables": [
|
|
35
35
|
{
|
|
36
36
|
"name": "TRADEOS_ACCESS_TOKEN",
|
|
37
|
-
"description": "OAuth Bearer for mcp-call. Run: npx tradeos-mcp-test-oauth, then paste the printed token.",
|
|
37
|
+
"description": "OAuth Bearer for mcp-call. Run: npx -y @tradeos/tradeos-mcp-test tradeos-mcp-test-oauth, then paste the printed token.",
|
|
38
38
|
"format": "string",
|
|
39
39
|
"isRequired": true,
|
|
40
40
|
"isSecret": true
|