Apps-mcp
Provides tools for managing Discord roles and channels, including creating, updating, deleting, and retrieving roles and channels.
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., "@Apps-mcpshow me my one-time payment pages"
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.
Apps-mcp
Unofficial Apps API 向けのツールキットです。
Cursor や Claude などの AI エージェントから、顧客照会・決済ページ作成・クーポン・Discord 連携などを扱えるようにします。
このリポジトリには次の 2つ があります。
MCP(Apps-mcp) … 実際に Apps API を呼び出す実行役です。認証、HTTP、読み取り/書き込みのガードを担当します。エージェントの「ツール」として動きます。
Agent Skills(apps-api) … 使い方の手順書です。どのツールを使うか、必須フィールド、よくある作業の流れ、注意点をエージェントに渡します。MCP だけでは迷いやすい作成・更新を、Skills があると安定させやすくなります。
認証は OAuth ではなく、Apps 管理画面の アプリID / アプリシークレット です。
ローカルで動かして、自分の資格情報だけを MCP クライアントに渡す使い方がいちばん簡単です。
問題や改善案があれば、Issue や Pull Request を歓迎します。
使い方(いちばん簡単)
1. アプリID・シークレットを取得
Apps にログイン
管理画面で API 機能をインストール
API 設定画面で アプリID と アプリシークレット を控える
チャット・GitHub・問い合わせ本文には貼らないでください。
2. セットアップ
npx を使うため、Node.js 20 以上が必要です。入っていなければ先に入れてください。
確認:
node -v/npx -v未導入: https://nodejs.org/ から LTS をインストール
npx -y github:jammaru/theapps-mcp configure対話ウィザードが次を行います。
アプリID / アプリシークレットの入力
書き込み許可の有無(既定は読み取り専用。許可時は本番APIのみ・実データに影響し得る旨を表示)
Cursor / Claude Code / Claude Desktop への MCP 登録(任意)
設定プレビューと手動追加用テンプレートの表示
接続後は Agent Skills も入れると、プラン作成などの手順が安定します。
npx skills add jammaru/theapps-mcp再設定:
npx -y github:jammaru/theapps-mcp configure --forcenpm 公開後は npx -y theapps-mcp configure でも同じです。
Agent にセットアップを任せたい場合
次のプロンプトを Agent に渡してください。
Apps-mcp をセットアップしてください。
1. node -v / npx -v を確認する。無ければ Node.js LTS(20以上)の入れ方を案内して、導入後に続きをやる
2. ユーザーに Apps 管理画面のアプリID / アプリシークレットを用意してもらう(configure の対話入力で渡す)
3. 実行: npx -y github:jammaru/theapps-mcp configure
4. 推奨: npx skills add jammaru/theapps-mcp
5. Cursor / Claude の再起動を案内し、ツール apps_auth_status で接続確認する手順を伝える3. クライアントを再起動
設定後、Cursor や Claude Desktop を再起動してください。
まずはツール apps_auth_status で接続確認できます。
Windows Store 版 Claude Desktop は設定ファイルのパスが異なります。configure が自動検出します。
4. 使う(これだけでOK)
セットアップ後は、普通に日本語で依頼すれば大丈夫です。例:
「Apps の決済ページ(1回払い)一覧を見せて」
「テスト環境で『単発セミナー』3000円の決済ページを作って。先に dry_run して」
「この customer_id の顧客情報を確認して: …」
「登録ページの一覧を出して」
Agent がツールを選びます。書き込みは既定でオフなので、作る・更新・削除をしたいときだけ configure で書き込み許可するか、設定の APPS_MCP_ALLOW_WRITE=true を有効にしてください。
Related MCP server: horoshop-mcp-server
手動で追加する場合
configure を使わず、設定ファイルに直接書いても構いません。
{
"mcpServers": {
"apps": {
"command": "npx",
"args": ["-y", "github:jammaru/theapps-mcp"],
"env": {
"APPS_APP_ID": "your-app-id",
"APPS_APP_SECRET": "your-app-secret"
}
}
}
}書き込みを許可する場合のみ
Apps API は 本番のみ(Sandbox なし)です。
{
"env": {
"APPS_APP_ID": "your-app-id",
"APPS_APP_SECRET": "your-app-secret",
"APPS_MCP_ALLOW_WRITE": "true"
}
}作成・更新・削除ツールは、さらに confirm: true が必要です。先に dry_run: true 推奨。
環境変数
変数 | 必須 | 説明 |
| yes* | アプリID |
| yes* | アプリシークレット |
| no | 固定 Bearer(指定時は自動更新しない) |
| no | 書き込み許可(既定 |
| no | 既定 |
| HTTP remote 時 | 非 loopback の |
* または APPS_ACCESS_TOKEN
できること
書き込み(create / update / delete)は APPS_MCP_ALLOW_WRITE=true かつ confirm: true が必要です。
認証・ヘルプ
ツール | 内容 |
| セットアップ・安全・ツール一覧の案内 |
| 資格情報の有無(シークレットは返さない) |
| アクセストークンキャッシュのクリア |
顧客・決済照会
ツール | 内容 |
| 顧客情報 |
| 買い切り決済 |
| 定期課金の決済 |
| 分割払いの決済 |
登録ページ(advance)
ツール | 内容 |
| 一覧 |
| 取得 |
| 作成 |
| 更新 |
| 削除 |
| 契約者一覧 |
決済ページ — 買い切り(product)
ツール | 内容 |
| 一覧 |
| 取得 |
| 作成 |
| 更新 |
| 削除 |
| 購入者一覧 |
決済ページ — 定期(paid)
ツール | 内容 |
| 一覧 |
| 取得 |
| 作成 |
| 更新 |
| 削除 |
| 購読者一覧 |
決済ページ — 分割(installments)
ツール | 内容 |
| 一覧 |
| 取得 |
| 作成 |
| 更新 |
| 削除 |
| 購読者一覧 |
クーポン
ツール | 内容 |
| 一覧 |
| 取得 |
| 作成 |
| 更新 |
| 削除 |
Discord
ツール | 内容 |
| ロール取得 |
| ロール作成 |
| ロール更新 |
| ロール削除 |
| チャンネル取得 |
| チャンネル作成 |
| チャンネル更新 |
| チャンネル削除 |
公式エンドポイント: https://theapps.jp/api/endpoints
決済ページ API は
/v1/client/...payment_idは Webhook 決済成功イベント由来(管理画面の表示IDではない)
Agent Skills(利用者向け)
MCP は実行、スキルは「どのツール・どのフィールド・どの順番か」を案内します。
Cursor / Claude Code などでは次で入れられます。
npx skills add jammaru/theapps-mcp入るスキル名は apps-api です。書き込みやプラン作成の前に recipes/ と references/ を読む想定です。
中身: skills/apps-api/
迷ったらツール apps_help(topic=skill)でも索引を返せます。
開発
bun install
bun run start
bun test
bun run check
bun run typecheckbun run src/index.ts configure
bun run src/index.ts --http # Bun のみ / 既定は loopback
# 非 loopback は APPS_MCP_HTTP_ALLOW_REMOTE=true と APPS_MCP_HTTP_BEARER が必要License
MIT
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.
Related MCP Servers
- Alicense-qualityDmaintenanceMCP server for Concierge, enabling AI agents to manage Discord customer support operations including tickets, AI, knowledge base, analytics, and more via natural language.Last updated27MIT
- Flicense-qualityDmaintenanceAn unofficial MCP server that connects AI agents to Horoshop e-commerce stores, providing tools for managing orders, products, and store operations via the Horoshop API.Last updated1

kintone MCP Serverofficial
AlicenseAqualityBmaintenanceOfficial MCP server for kintone, enabling AI assistants to manage kintone apps, records, and settings through natural language.Last updated201,50052Apache 2.0- Alicense-qualityCmaintenanceOfficial MCP server for NanoCart, enabling AI agents to manage products, orders, coupons, categories, subscribers, settings, and pull sales reports from your store.Last updatedMIT
Related MCP Connectors
Official MCP server for Lovable, the AI-powered full-stack app builder.
Official MCP server for OmniDimension. Drive voice agents, dispatch calls, and run bulk campaigns.
An MCP server that integrates with Discord to provide AI-powered features.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/jammaru/theapps-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server