@gera-services/mcp-gera-nexus 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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Gera Services Ltd
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,50 @@
1
+ # @gera-services/mcp-gera-nexus
2
+
3
+ MCP (Model Context Protocol) server for [GeraNexus](https://geranexus.com) — the open Agentic Commerce Protocol by [Gera Services](https://gera.services).
4
+
5
+ **Status:** Placeholder (v0.1.0). The full transactional protocol — `negotiate`, `book`, `pay`, `cancel`, `refund`, `dispute`, `verify-completion` — is under development and ships with v1.0.0.
6
+
7
+ ## What is GeraNexus?
8
+
9
+ GeraNexus extends MCP (query-only) into transactional territory. It's the open protocol every AI agent will speak to interact with any Gera vertical — and eventually any real-world service. Think "Stripe for agent commerce." All 22 Gera verticals (GeraClinic, GeraHome, GeraMarket, GeraEats, GeraRide, GeraCash, and more) will be the reference implementation.
10
+
11
+ Full spec: [`ceo/strategy/research/five-ideas-for-2030.md`](https://github.com/geraservicesuk/globetura/blob/master/ceo/strategy/research/five-ideas-for-2030.md)
12
+
13
+ ## Tools
14
+
15
+ | Tool | Description |
16
+ |------|-------------|
17
+ | `info` | Returns current status, planned actions, revenue model, and launch estimate for GeraNexus |
18
+
19
+ Additional transactional tools (`negotiate`, `book`, `pay`, `cancel`, `refund`, `dispute`, `verify_completion`) will land in v1.0.0.
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ npx @gera-services/mcp-gera-nexus
25
+ ```
26
+
27
+ ## Usage with Claude Desktop
28
+
29
+ Add to your `claude_desktop_config.json`:
30
+
31
+ ```json
32
+ {
33
+ "mcpServers": {
34
+ "gera-nexus": {
35
+ "command": "npx",
36
+ "args": ["@gera-services/mcp-gera-nexus"]
37
+ }
38
+ }
39
+ }
40
+ ```
41
+
42
+ ## Learn more
43
+
44
+ - Product: https://geranexus.com
45
+ - Parent company: https://gera.services
46
+ - Full spec: https://github.com/geraservicesuk/globetura/blob/master/ceo/strategy/research/five-ideas-for-2030.md
47
+
48
+ ## License
49
+
50
+ MIT — (c) 2026 Gera Services Ltd
package/bin/cli.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../dist/server.js');
package/dist/index.js ADDED
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var index_exports = {};
20
+ __export(index_exports, {
21
+ server: () => import_server.server
22
+ });
23
+ module.exports = __toCommonJS(index_exports);
24
+ var import_server = require("./server.js");
25
+ // Annotate the CommonJS export names for ESM import in node:
26
+ 0 && (module.exports = {
27
+ server
28
+ });
package/dist/server.js ADDED
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var server_exports = {};
20
+ __export(server_exports, {
21
+ server: () => server
22
+ });
23
+ module.exports = __toCommonJS(server_exports);
24
+ var import_mcp = require("@modelcontextprotocol/sdk/server/mcp.js");
25
+ var import_stdio = require("@modelcontextprotocol/sdk/server/stdio.js");
26
+ const server = new import_mcp.McpServer({
27
+ name: "gera-nexus",
28
+ version: "0.1.0"
29
+ });
30
+ server.tool(
31
+ "info",
32
+ "Return product information about GeraNexus \u2014 the open Agentic Commerce Protocol by Gera Services. Use this to learn what GeraNexus is, why it exists, and when the full MCP toolset will ship.",
33
+ {},
34
+ async () => {
35
+ const info = {
36
+ status: "coming-soon",
37
+ product: "GeraNexus",
38
+ tagline: "The Agentic Commerce Protocol",
39
+ description: 'An open protocol extending MCP into transactional territory so any AI agent can negotiate, book, pay, cancel, refund, dispute, and verify completion across real-world services. Gera exposes all 22 verticals (GeraClinic, GeraHome, GeraMarket, GeraEats, GeraRide, GeraCash, and more) as reference implementations. Goal: become "Stripe for agent commerce."',
40
+ category: "Infrastructure / Protocol",
41
+ plannedActions: [
42
+ "negotiate",
43
+ "book",
44
+ "pay",
45
+ "cancel",
46
+ "refund",
47
+ "dispute",
48
+ "verify-completion"
49
+ ],
50
+ revenueModel: [
51
+ "2% transaction fee on agent-initiated commerce",
52
+ "Protocol governance fees from third-party marketplaces",
53
+ "Premium tier: higher volume, priority support, dispute SLA"
54
+ ],
55
+ launchEstimate: "Q3-Q4 2026",
56
+ learnMore: "https://geranexus.com",
57
+ parentCompany: "Gera Services Ltd (https://gera.services)",
58
+ fullSpec: "https://github.com/geraservicesuk/globetura/blob/master/ceo/strategy/research/five-ideas-for-2030.md"
59
+ };
60
+ return {
61
+ content: [{ type: "text", text: JSON.stringify(info, null, 2) }]
62
+ };
63
+ }
64
+ );
65
+ async function main() {
66
+ const transport = new import_stdio.StdioServerTransport();
67
+ await server.connect(transport);
68
+ console.error("GeraNexus MCP server (placeholder v0.1.0) running on stdio");
69
+ }
70
+ main().catch(console.error);
71
+ // Annotate the CommonJS export names for ESM import in node:
72
+ 0 && (module.exports = {
73
+ server
74
+ });
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@gera-services/mcp-gera-nexus",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for GeraNexus — the open Agentic Commerce Protocol by Gera Services. Placeholder; full transactional protocol (negotiate, book, pay, cancel, refund, dispute) launching 2026.",
5
+ "mcpName": "io.github.geraservicesuk/mcp-gera-nexus",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "mcp-gera-nexus": "bin/cli.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "bin",
14
+ "README.md",
15
+ "LICENSE",
16
+ "server.json"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "scripts": {
22
+ "build": "node build.mjs",
23
+ "type-check": "tsc --noEmit",
24
+ "dev": "tsc --watch --noCheck",
25
+ "start": "node dist/server.js",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "keywords": [
29
+ "mcp",
30
+ "model-context-protocol",
31
+ "ai",
32
+ "gera",
33
+ "gera-nexus",
34
+ "ai-agent"
35
+ ],
36
+ "author": {
37
+ "name": "Gera Services",
38
+ "email": "engineering@gera.services",
39
+ "url": "https://gera.services"
40
+ },
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/geraservicesuk/mcp-gera-nexus"
45
+ },
46
+ "homepage": "https://geranexus.com",
47
+ "bugs": {
48
+ "url": "https://github.com/geraservicesuk/mcp-gera-nexus/issues"
49
+ },
50
+ "engines": {
51
+ "node": ">=18.0.0"
52
+ },
53
+ "dependencies": {
54
+ "@modelcontextprotocol/sdk": "^1.12.0",
55
+ "zod": "^3.23.0"
56
+ },
57
+ "devDependencies": {
58
+ "@types/node": "^20.12.0",
59
+ "esbuild": "^0.28.0",
60
+ "typescript": "^5.4.0"
61
+ }
62
+ }
package/server.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.geraservicesuk/mcp-gera-nexus",
4
+ "description": "Placeholder MCP server for GeraNexus — the open Agentic Commerce Protocol by Gera Services. Ships a single `info` tool while the full transactional toolset is under development (launching 2026).",
5
+ "repository": {
6
+ "url": "https://github.com/geraservicesuk/mcp-gera-nexus",
7
+ "source": "github"
8
+ },
9
+ "version": "0.1.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "@gera-services/mcp-gera-nexus",
14
+ "version": "0.1.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": []
19
+ }
20
+ ]
21
+ }