forked from modelcontextprotocol/create-typescript-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Add documentation landing page for Cloudflare Workers deployment #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
hideokamoto
merged 7 commits into
main
from
claude/create-docs-landing-page-01GSymTUuksUYZHApLxCMp5b
Nov 17, 2025
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
e5e08ba
Add documentation landing page for Cloudflare Workers deployment
claude ef51397
Rebuild documentation site with Astro and multi-language support
claude b24f5a4
Migrate from Cloudflare Pages to Workers Static Assets
claude 6c3bd90
Fix Workers Static Assets configuration - remove unnecessary Worker s…
claude f69c841
Security and configuration improvements
claude fcf9ad9
Fix: Move sanitize-html from root to docs package
claude 0bf3e49
Fix CI workflow by detecting CI environment and skipping interactive …
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Documentation site (deployed separately to Cloudflare Workers) | ||
| docs/ | ||
|
|
||
| # Source files | ||
| src/ | ||
| tsconfig.json | ||
|
|
||
| # Development | ||
| *.log | ||
| .DS_Store | ||
| node_modules/ | ||
|
|
||
| # Git | ||
| .git/ | ||
| .github/ | ||
| .gitignore | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # create-mcp-tools Documentation Site | ||
|
|
||
| このディレクトリには、create-mcp-toolsの静的ドキュメントサイトが含まれています。 | ||
|
|
||
| ## デプロイ方法 | ||
|
|
||
| ### Cloudflare Workersへのデプロイ | ||
|
|
||
| 1. Cloudflare Workersアカウントを作成(まだの場合) | ||
|
|
||
| 2. Wranglerをインストール: | ||
| ```bash | ||
| npm install -g wrangler | ||
| ``` | ||
|
|
||
| 3. Cloudflareにログイン: | ||
| ```bash | ||
| wrangler login | ||
| ``` | ||
|
|
||
| 4. `wrangler.toml`を編集して、`routes`のzone_nameを自分のドメインに変更 | ||
|
|
||
| 5. デプロイ: | ||
| ```bash | ||
| cd docs | ||
| wrangler deploy | ||
| ``` | ||
|
|
||
| ### ローカルでのプレビュー | ||
|
|
||
| ```bash | ||
| cd docs | ||
| wrangler dev | ||
|
hideokamoto marked this conversation as resolved.
Outdated
|
||
| ``` | ||
|
|
||
| ブラウザで `http://localhost:8787` を開くとサイトをプレビューできます。 | ||
|
|
||
| ## ファイル構成 | ||
|
|
||
| - `index.html` - メインのランディングページ | ||
| - `wrangler.toml` - Cloudflare Workers設定ファイル | ||
| - `README.md` - このファイル | ||
|
|
||
| ## 注意事項 | ||
|
|
||
| このディレクトリはnpmパッケージには含まれません。`package.json`の`files`フィールドで除外されています。 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While not incorrect, ignoring
src/andtsconfig.jsonhere is redundant because thefilesfield inpackage.jsonis already configured to only include thebuildandtemplatedirectories. For consistency and to have a single source of truth for what's included in the package, you might consider relying solely on thefilesfield.