@chathost/mcp 1.0.0 → 1.0.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/README.md +31 -34
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
|
-
#
|
|
1
|
+
# chathost.io — Agentic First Web Hosting
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **Build a website with AI. Deploy it with one sentence.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
chathost.io is web hosting and internet infrastructure built for the age of AI agents. No git. No CLI. No hosting knowledge. Just tell your AI agent _"deploy my website"_ and get a live URL in minutes.
|
|
6
|
+
|
|
7
|
+
We believe the future of the internet is built by people who have never opened a terminal — powered by AI agents that handle the complexity for them.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Get Started
|
|
12
|
+
|
|
13
|
+
### VS Code / Cursor — one click install
|
|
14
|
+
|
|
15
|
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=chathost&config=%7B%22command%22%3A%20%22npx%22%2C%20%22args%22%3A%20%5B%22-y%22%2C%20%22%40chathost/mcp%22%5D%7D)
|
|
16
|
+
[](https://cursor.com/en/install-mcp?name=chathost&config=eyJjb21tYW5kIjogIm5weCIsICJhcmdzIjogWyIteSIsICJAY2hhdGhvc3QvbWNwIl19)
|
|
6
17
|
|
|
7
18
|
### Claude Code
|
|
8
19
|
|
|
@@ -16,50 +27,36 @@ claude mcp add --transport stdio chathost -- npx -y @chathost/mcp
|
|
|
16
27
|
gemini mcp add chathost npx -y @chathost/mcp
|
|
17
28
|
```
|
|
18
29
|
|
|
19
|
-
|
|
30
|
+
Then restart your agent and say **"deploy my website"**.
|
|
20
31
|
|
|
21
|
-
|
|
32
|
+
---
|
|
22
33
|
|
|
23
|
-
|
|
24
|
-
{
|
|
25
|
-
"servers": {
|
|
26
|
-
"chathost": {
|
|
27
|
-
"command": "npx",
|
|
28
|
-
"args": ["-y", "@chathost/mcp"]
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
```
|
|
34
|
+
## How it works
|
|
33
35
|
|
|
34
|
-
|
|
36
|
+
1. Install the chathost MCP server in your AI agent (see above)
|
|
37
|
+
2. Ask your agent to create a website — or point it at one you've already built
|
|
38
|
+
3. Say _"deploy it to chathost"_
|
|
39
|
+
4. Your agent builds a Docker image, pushes it, and returns a live URL
|
|
35
40
|
|
|
36
|
-
|
|
41
|
+
That's it. Your site is on the internet.
|
|
37
42
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"chathost": {
|
|
42
|
-
"command": "npx",
|
|
43
|
-
"args": ["-y", "@chathost/mcp"]
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
```
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Early Adopters
|
|
48
46
|
|
|
49
|
-
|
|
47
|
+
We're in **early access** right now. We're looking for people who are building with AI agents and want the simplest path from idea to live website.
|
|
50
48
|
|
|
51
|
-
|
|
49
|
+
If you're using Claude Code, Cursor, Gemini, VS Code, or any MCP-compatible agent — we'd love to hear from you.
|
|
52
50
|
|
|
53
|
-
|
|
54
|
-
2. "Deploy it to chathost"
|
|
51
|
+
**Get in touch:** [contact@chathost.io](mailto:contact@chathost.io)
|
|
55
52
|
|
|
56
|
-
|
|
53
|
+
---
|
|
57
54
|
|
|
58
55
|
## Contributing
|
|
59
56
|
|
|
60
|
-
This repository is a read-only mirror of the primary
|
|
57
|
+
This repository is a read-only mirror of the primary repository. It is kept in sync automatically on each release.
|
|
61
58
|
|
|
62
|
-
Pull requests are welcome — once reviewed, accepted changes will be applied to the primary repo and mirrored back.
|
|
59
|
+
Pull requests are welcome — once reviewed, accepted changes will be applied to the primary repo and mirrored back.
|
|
63
60
|
|
|
64
61
|
## License
|
|
65
62
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chathost/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "chathost.io MCP server - deploy websites from your AI agent",
|
|
5
5
|
"bin": { "chathost-mcp": "index.js" },
|
|
6
6
|
"optionalDependencies": {
|
|
7
|
-
"@chathost/mcp-linux-x64": "1.0.
|
|
8
|
-
"@chathost/mcp-darwin-arm64": "1.0.
|
|
9
|
-
"@chathost/mcp-darwin-x64": "1.0.
|
|
10
|
-
"@chathost/mcp-win-x64": "1.0.
|
|
7
|
+
"@chathost/mcp-linux-x64": "1.0.3",
|
|
8
|
+
"@chathost/mcp-darwin-arm64": "1.0.3",
|
|
9
|
+
"@chathost/mcp-darwin-x64": "1.0.3",
|
|
10
|
+
"@chathost/mcp-win-x64": "1.0.3"
|
|
11
11
|
},
|
|
12
12
|
"files": ["index.js", "README.md", "server.json"],
|
|
13
13
|
"license": "MIT",
|