@atrib/agent 0.2.14 → 0.2.16
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 +4 -4
package/README.md
CHANGED
|
@@ -19,8 +19,8 @@ Two coverage surfaces define what you get:
|
|
|
19
19
|
| **Vercel AI SDK MCP** | `@ai-sdk/mcp` | `attributeVercelAiSdkMcp(mcpClient, { interceptor, serverUrl })` | Monkey-patches `mcpClient.request()` (custom JSON-RPC, not SDK Client) | ✅ Shipped |
|
|
20
20
|
| **LangChain JS MCP adapters** | `@langchain/mcp-adapters` | **High-level:** `attributeLangchainMcp(multiClient, { interceptor, serverUrls })` | Walks `multiClient.config.mcpServers`, monkey-patches `callTool` + `fork` on each internal Client | ✅ Shipped |
|
|
21
21
|
| | | **Low-level:** `wrapMcpClient(rawClient, interceptor)` passed to `loadMcpTools(name, wrapped)` | Reuses raw-SDK wrapper path | ✅ Shipped |
|
|
22
|
-
| **OpenAI Agents SDK** | `@openai/agents` | _(planned. custom transport architecture, not `@modelcontextprotocol/sdk`)_
|
|
23
|
-
| **Mastra** | `@mastra/mcp` | _(planned.
|
|
22
|
+
| **OpenAI Agents SDK** | `@openai/agents` | _(planned. custom transport architecture, not `@modelcontextprotocol/sdk`)_ | Planned: subclass `MCPServerSSE` / `MCPServerStdio` / `MCPServerStreamableHttp` | ⏳ Planned |
|
|
23
|
+
| **Mastra** | `@mastra/mcp` | _(planned. receipt proof covers `MCPClient` + `MCPServer` over stdio)_ | Adapter pending | 🧪 Proof |
|
|
24
24
|
|
|
25
25
|
**The pattern across every row is identical:** one `atrib()` interceptor object, one adapter helper call, zero changes to your existing tool invocation code. The name of the helper varies because each host framework exposes a structurally different integration surface, but the `ToolCallInterceptor` type, the options shape, and the observable behavior are uniform.
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atrib/agent",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"@noble/ed25519": "^3.1.0",
|
|
34
34
|
"@noble/hashes": "^2.2.0",
|
|
35
35
|
"canonicalize": "^3.0.0",
|
|
36
|
-
"@atrib/mcp": "0.
|
|
37
|
-
"@atrib/verify": "0.7.
|
|
36
|
+
"@atrib/mcp": "0.17.1",
|
|
37
|
+
"@atrib/verify": "0.7.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/node": "^25.9.
|
|
40
|
+
"@types/node": "^25.9.2",
|
|
41
41
|
"typescript": "^6.0.3",
|
|
42
42
|
"vitest": "^4.1.8"
|
|
43
43
|
},
|