Skip to content

Commit 8234147

Browse files
authored
Merge pull request #182 from eviltester/172-webmcp
Add WebMCP page
2 parents d7398f0 + cbb865a commit 8234147

23 files changed

Lines changed: 1147 additions & 432 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The application is live at [AnyWayData.com](https://anywaydata.com)
2727
- Or clone and run locally with Vite:
2828
- `pnpm install`
2929
- `pnpm run dev:web`
30-
- open `http://127.0.0.1:4173/app.html` or `http://127.0.0.1:4173/generator.html`
30+
- open `http://127.0.0.1:4173/app.html`, `http://127.0.0.1:4173/generator.html`, or `http://127.0.0.1:4173/webmcp.html`
3131

3232
Use `pnpm run build:web` to create a production build and `pnpm run preview:web` to preview the built output.
3333
The old static-server flow (e.g. `python3 -m http.server`) is no longer the recommended local runtime path.
@@ -724,6 +724,7 @@ Then open:
724724
- `http://localhost:8080/`
725725
- `http://localhost:8080/app.html`
726726
- `http://localhost:8080/generator.html`
727+
- `http://localhost:8080/webmcp.html`
727728

728729
Notes:
729730

apps/anywaydata/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# syntax=docker/dockerfile:1
2-
31
FROM node:22-alpine AS builder
42
WORKDIR /app
53

@@ -22,4 +20,3 @@ FROM nginxinc/nginx-unprivileged:1.27-alpine
2220
WORKDIR /usr/share/nginx/html
2321

2422
COPY --from=builder /app/build/ ./
25-

apps/anywaydata/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Then open:
2626
- `http://localhost:8080/`
2727
- `http://localhost:8080/app.html`
2828
- `http://localhost:8080/generator.html`
29+
- `http://localhost:8080/webmcp.html`
2930

3031
## Notes
3132

apps/api/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# syntax=docker/dockerfile:1
21
FROM node:22-alpine AS deps
32
WORKDIR /app
43
ENV HUSKY=0
@@ -20,4 +19,3 @@ COPY apps/api ./apps/api
2019
EXPOSE 3000
2120
CMD ["node", "apps/api/src/index.js"]
2221

23-

apps/mcp/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# syntax=docker/dockerfile:1
21
FROM node:22-alpine AS deps
32
WORKDIR /app
43
ENV HUSKY=0
@@ -16,4 +15,3 @@ COPY package.json ./package.json
1615
COPY packages/core ./packages/core
1716
COPY apps/mcp ./apps/mcp
1817
CMD ["node", "apps/mcp/src/index.js"]
19-

0 commit comments

Comments
 (0)