graphor 0.11.1 → 0.11.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.3 (2026-02-12)
4
+
5
+ Full Changelog: [v0.11.2...v0.11.3](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.11.2...v0.11.3)
6
+
7
+ ### Documentation
8
+
9
+ * update readme ([8198643](https://github.com/synapseops/graphor-typescript-sdk/commit/819864354702224467c34468f2c09b1841cd2560))
10
+
11
+ ## 0.11.2 (2026-02-12)
12
+
13
+ Full Changelog: [v0.11.1...v0.11.2](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.11.1...v0.11.2)
14
+
15
+ ### Documentation
16
+
17
+ * update mpc deeplinks ([e43f6c5](https://github.com/synapseops/graphor-typescript-sdk/commit/e43f6c51565a249e794fb59186fd2b44a8cbd189))
18
+ * update mpc deeplinks ([c11b95d](https://github.com/synapseops/graphor-typescript-sdk/commit/c11b95dc809f566857143728776089d8065b02f7))
19
+
3
20
  ## 0.11.1 (2026-02-12)
4
21
 
5
22
  Full Changelog: [v0.11.0...v0.11.1](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.11.0...v0.11.1)
package/README.md CHANGED
@@ -22,6 +22,51 @@ Use the Graphor MCP Server to enable AI assistants to interact with this API, al
22
22
 
23
23
  > Note: You may need to set environment variables in your MCP client.
24
24
 
25
+ ### Remote MCP Server (Web Apps & Agentic Workflows)
26
+
27
+ For web-based AI clients (e.g. [Claude.ai](https://claude.ai)) or agentic frameworks (e.g. LangChain, CrewAI) that cannot run local `npx` processes, use the hosted remote MCP server. Authentication is handled via **OAuth** — a browser window will open for you to log in.
28
+
29
+ ```
30
+ https://mcp.graphor.workers.dev/sse
31
+ ```
32
+
33
+ **Web apps (e.g. Claude.ai)** — in Claude.ai, go to **Settings > Connectors > Add custom connector**, fill in the name and the remote MCP server URL. You will be redirected to log in through the OAuth flow:
34
+
35
+ ```
36
+ https://mcp.graphor.workers.dev/sse
37
+ ```
38
+
39
+ **Desktop clients (e.g. Claude Desktop)** — use [`mcp-remote`](https://www.npmjs.com/package/mcp-remote) as a local proxy:
40
+
41
+ ```json
42
+ {
43
+ "mcpServers": {
44
+ "graphor_api": {
45
+ "command": "npx",
46
+ "args": ["mcp-remote", "https://mcp.graphor.workers.dev/sse"]
47
+ }
48
+ }
49
+ }
50
+ ```
51
+
52
+ **Agentic workflows (e.g. LangChain)** — connect via SSE transport:
53
+
54
+ ```typescript
55
+ import { MultiServerMCPClient } from "@langchain/mcp-adapters";
56
+
57
+ const client = new MultiServerMCPClient({
58
+ graphor: {
59
+ url: "https://mcp.graphor.workers.dev/sse",
60
+ transport: "sse",
61
+ }
62
+ });
63
+
64
+ const tools = await client.getTools();
65
+ // Use tools with your LangChain agent
66
+ ```
67
+
68
+ See the [MCP Server README](./packages/mcp-server/README.md) for more details.
69
+
25
70
  ## Documentation
26
71
 
27
72
  📚 **Full documentation**: [docs.graphorlm.com/sdk/overview](https://docs.graphorlm.com/sdk/overview)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphor",
3
- "version": "0.11.1",
3
+ "version": "0.11.3",
4
4
  "description": "The official TypeScript library for the Graphor API",
5
5
  "author": "Graphor <support@graphorlm.com>",
6
6
  "types": "./index.d.ts",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.11.1'; // x-release-please-version
1
+ export const VERSION = '0.11.3'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.11.1";
1
+ export declare const VERSION = "0.11.3";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.11.1";
1
+ export declare const VERSION = "0.11.3";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.11.1'; // x-release-please-version
4
+ exports.VERSION = '0.11.3'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.11.1'; // x-release-please-version
1
+ export const VERSION = '0.11.3'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map