Poi MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Poi MCP ServerUpload ./dist/site.zip to Poi and give me the URL."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Poi MCP サーバー
Poi の外部公開 API を MCP(Model Context Protocol)ツールとして公開するサーバーです。 対応する LLM クライアント(Claude Code / Claude Desktop など)から、ファイルのアップロード・ ダウンロード、コメントの取得・投稿、無料ライセンスキーの発行を「ツール」として呼び出せます。
内部では Poi の公開 API を叩きます:
poi_upload→POST /api/v1/upload.phppoi_download→GET /api/v1/download.phppoi_check_license→GET /api/v1/license.phppoi_list_comments→GET /api/v1/comments.phppoi_post_comment→POST /api/v1/comments.phppoi_issue_free_license→POST /api/v1/issue-free.php
ツール
ツール | 引数 | 説明 |
|
| ファイルをアップロードして公開 URL を返す。対応形式 |
|
| 公開サイトの中身をダウンロードして保存する。Markdown サイトは原本 |
|
| ライセンスキー( |
|
| 公開サイトの訪問者コメントを新しい順に取得する。認証不要。 |
|
| 公開サイトにコメントを投稿する。認証不要(連投は IP 単位でレート制限= |
|
| 無料ライセンスキー( |
Related MCP server: mcp_server_for_claudes_toolbox
セットアップ
npm に公開してあるので、クローンや npm install は不要です。クライアントの起動コマンドに
npx -y poi-mcp を指定すれば、初回に自動でダウンロードされて起動します。
必要なもの: Node.js 18 以上(
npxが使えれば OK。fetch/FormData/Blobを使用)バージョンを固定したいときは
npx -y poi-mcp@1のように指定します。
ローカルで開発・改造する場合のみ、リポジトリを clone して
cd mcp && npm install、 起動コマンドをnode src/index.mjsに置き換えてください。
環境変数
変数 | 既定 | 用途 |
|
| Poi のベース URL |
| (なし) | アップロード用 API キー(マスターキー or ライセンスキー |
| (なし) | 無料キー発行の発行パスワード |
POI_API_KEY / POI_ISSUE_PASSWORD はツール引数(apiKey / password)で都度上書きもできます。
クライアントへの登録
Claude Code(CLI)
claude mcp add poi \
--env POI_BASE_URL=https://あなたのドメイン \
--env POI_API_KEY=LIC-XXXX-XXXX-XXXX-XXXX \
--env POI_ISSUE_PASSWORD=発行パスワード \
-- npx -y poi-mcpClaude Desktop / 設定ファイル(.mcp.json や claude_desktop_config.json)
{
"mcpServers": {
"poi": {
"command": "npx",
"args": ["-y", "poi-mcp"],
"env": {
"POI_BASE_URL": "https://あなたのドメイン",
"POI_API_KEY": "LIC-XXXX-XXXX-XXXX-XXXX",
"POI_ISSUE_PASSWORD": "発行パスワード"
}
}
}
}動作確認(手動)
MCP Inspector で対話的に確認できます:
npx @modelcontextprotocol/inspector node src/index.mjs使い方の例(LLM への指示)
「
./distをまとめたsite.zipを Poi にアップロードして URL を教えて」 →poi_upload({ path: "./site.zip" })「この HTML を
page.htmlとして公開して」 →poi_upload({ content: "<h1>hi</h1>", filename: "page.html" })「
9KwR7jgeDfPrを手元にダウンロードして」 →poi_download({ slug: "9KwR7jgeDfPr" })(Markdown サイトは.md、それ以外は.zipを保存)「このライセンスキーがまだ有効か確認して」 →
poi_check_license({ key: "LIC-XXXX-XXXX-XXXX-XXXX" })→{ valid, expires_at, days_left, ... }「
9KwR7jgeDfPrのコメントを一覧して」 →poi_list_comments({ slug: "9KwR7jgeDfPr" })「
9KwR7jgeDfPrに『いいね!』とコメントして」 →poi_post_comment({ slug: "9KwR7jgeDfPr", body: "いいね!" })(author省略で匿名)「アップロード用の無料キーを取って」 →
poi_issue_free_license()(環境変数の発行パスワードを使用)
API キー・発行パスワードは秘密情報です。共有環境では環境変数で渡し、ログや会話に残さないよう注意してください。
公開(メンテナ向け)
npx -y poi-mcp を成立させるには、この mcp/ を npm に公開します。
cd mcp
npm login
npm version patch # 必要に応じて版を上げる
npm publish --access publicパッケージ名
poi-mcpが取得済みの場合は、package.jsonのnameをスコープ付き (例@あなた/poi-mcp)に変え、README とドキュメントのpoi-mcpも読み替えてください。公開されるのは
files(srcとREADME.md)のみです。node_modulesは含まれません。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nishota/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server