@darwinium/portal-mcp 0.0.1

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 ADDED
@@ -0,0 +1,14 @@
1
+ # @darwinium/portal-mcp
2
+
3
+ **This is a placeholder release.** The Darwinium Portal MCP server has not been published
4
+ yet — version `0.0.1` reserves the package name only and does nothing if run.
5
+
6
+ When released, this package will provide a local MCP server that connects Claude Desktop and
7
+ Claude Code to the Darwinium portal tab open in your browser, paired with a companion Chrome
8
+ extension.
9
+
10
+ Documentation and release status: **https://darwinium.com/portal-mcp**
11
+
12
+ ## License
13
+
14
+ ISC
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env node
2
+ // Placeholder release (0.0.1). This version reserves the package name; the
3
+ // working server ships in 1.0.0.
4
+ //
5
+ // stderr, never stdout: an MCP host that launches this expects nothing but
6
+ // JSON-RPC on stdout, and a plain-text line there would corrupt its parser.
7
+ // Exiting non-zero makes the host report a failed server rather than hanging.
8
+ console.error(
9
+ [
10
+ 'This is a placeholder release of @darwinium/portal-mcp (0.0.1).',
11
+ '',
12
+ 'The Darwinium Portal MCP server has not been released yet. When it is, this',
13
+ 'package will provide the `portal-mcp` binary and the setup steps at:',
14
+ '',
15
+ ' https://darwinium.com/portal-mcp',
16
+ '',
17
+ ].join('\n'),
18
+ );
19
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@darwinium/portal-mcp",
3
+ "version": "0.0.1",
4
+ "description": "Darwinium Portal MCP — name reservation. The released package is not yet published; see https://darwinium.com/portal-mcp",
5
+ "author": "Darwinium",
6
+ "license": "ISC",
7
+ "homepage": "https://darwinium.com/portal-mcp",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/darwinium-com/portal-mcp.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/darwinium-com/portal-mcp/issues"
14
+ },
15
+ "engines": {
16
+ "node": ">=20"
17
+ },
18
+ "keywords": [
19
+ "mcp",
20
+ "modelcontextprotocol",
21
+ "darwinium",
22
+ "portal",
23
+ "fraud",
24
+ "claude"
25
+ ],
26
+ "type": "module",
27
+ "bin": "bin/portal-mcp.js",
28
+ "files": [
29
+ "bin",
30
+ "README.md"
31
+ ],
32
+ "publishConfig": {
33
+ "@darwinium:registry": "https://registry.npmjs.org/",
34
+ "registry": "https://registry.npmjs.org/",
35
+ "access": "public"
36
+ }
37
+ }