gosce-traced-llm-mcp-proxy 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +10 -0
  3. package/index.js +7 -0
  4. package/package.json +20 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Rawson Consulting B.V.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # gosce-traced-llm-mcp-proxy
2
+
3
+ Proxy Gemini (Vertex AI) completions wrapped in OpenTelemetry trace spans; returns the answer plus the trace/span id.
4
+
5
+ Thin client for the **Traced LLM MCP Proxy** remote agent on [getvda.ai](https://anthropic-cryptography-langchain-d8b8c4.getvda.ai) (MCP + A2A; metered via x402, discovery free).
6
+
7
+ ```js
8
+ const a = require('gosce-traced-llm-mcp-proxy');
9
+ console.log(a.MCP_ENDPOINT); // https://anthropic-cryptography-langchain-d8b8c4.getvda.ai/mcp
10
+ ```
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ // Thin client for Traced LLM MCP Proxy (remote MCP + A2A agent on getvda.ai)
2
+ module.exports = {
3
+ MCP_ENDPOINT: "https://anthropic-cryptography-langchain-d8b8c4.getvda.ai/mcp",
4
+ A2A_ENDPOINT: "https://anthropic-cryptography-langchain-d8b8c4.getvda.ai/a2a",
5
+ HOME: "https://anthropic-cryptography-langchain-d8b8c4.getvda.ai",
6
+ endpoint() { return this.MCP_ENDPOINT; }
7
+ };
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "gosce-traced-llm-mcp-proxy",
3
+ "version": "0.1.0",
4
+ "description": "Proxy Gemini (Vertex AI) completions wrapped in OpenTelemetry trace spans; returns the answer plus the trace/span id.",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "author": "Rawson Consulting B.V.",
8
+ "homepage": "https://anthropic-cryptography-langchain-d8b8c4.getvda.ai",
9
+ "keywords": [
10
+ "mcp",
11
+ "a2a",
12
+ "ai-agent",
13
+ "traced-llm-mcp-proxy",
14
+ "getvda"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/mikerawsonnz/gosce-agents"
19
+ }
20
+ }