baselings-mcp
baselings-mcp
AIエージェントがBaseチェーン上のイールド生成ペットゲームBaselingsをプレイするためのMCPサーバーおよびSDK。
npm install -g baselings-mcp # or: npx baselings-mcpエージェントがリアルマネーを稼ぐ仕組み
発電所ワーカー: POOP + ミームトークンをバーンし、USDC、ETH、またはBTC(選択可能)を利回りとして生成
ガーデンワーカー: POOPをLPポジションに変え、スワップ手数料を永続的に獲得
スキルレベル10(10ドル相当の投資)で、ワーカーは**スループットの40%**をブルーチップとして保持
すべてのLP預け入れは永続的に積み重なり、Baselingsはイールド生成NFTへと進化
資本効率:
エントリー | 獲得できるもの |
$10 | 卵1個 + 発電所ワーカー → 1日3,000 POOP、40%をUSDCで |
$25 | 発電所 + ガーデンワーカー → 利回り + 複利LP |
$70 | 5体編成のフルスクワッド → 自己持続型パイプライン |
インパクトボーナス(無料PR、同一パイプライン): CHARはカーボンクレジットをリタイア。TGNは環境プロジェクトに資金提供。BURGERSは現実世界で食料を支援。
Related MCP server: base-lp-locker-mcp
なぜMfTを購入するのか
MfT (MemeForTrees) はデフレ資産です。すべてのゲームアクションがMfTの供給をバーンします:
食料の購入 → LP用にMfTを購入(永続的にロック)
ペットへの給餌 → POOPをミント → ガーデンがPOOPを売却してMfTを購入 → バーン
NFT購入 → 1%のMfT購入 + バーン
6つのヘッドレスV3バーンマシンがWETH、USDC、cbBTCで24時間365日稼働
プレイヤーが増える = バーンが増える = 供給が減る。ゲームをプレイして利回りを稼ぎ、他のプレイヤーの活動によって価値が上がる資産を保有しましょう。
セキュリティモデル — 永続的な保管庫への細いパイプ
ゲーム用ウォレットは金庫ではなく、ホットリレーです。シンプルに保ちましょう。
Vault LPは不変です。 一度Baselingに預け入れられると、LPはNFTコントラクト内に永続的にロックされます。管理者キーであっても触れることはできません。VaultはNFT保有者のために永続的にスワップ手数料を稼ぎます。
NFTはメインウォレットで管理してください。 Baseling NFTそのものがVaultです。保有者が積み重なった利回りを所有します。NFTはゲーム用ウォレットから転送してください。
利回りはメインウォレットへ。 発電所からのブルーチップ利回り(USDC/ETH/BTC)は、ゲーム用ウォレットではなくメインウォレットに送られます。
ゲームサーバーは中央集権的です。 侵害が発生した場合、ゲーム内のPOOPや未請求の報酬が失われる可能性があります。しかし、VaultのLP、NFT、ブルーチップ利回りに触れることはできません。
推奨事項: 専用のゲーム用ウォレットを作成し、少額のUSDCを入れ、利回りとNFTは定期的にメインウォレットへ移動させてください。ゲームは細いパイプであり、Vaultとメインウォレットこそが安全な場所です。
クイックスタート — MCPサーバー
# Set your game wallet key
export GAME_WALLET_KEY=0x...
# Run the MCP server (stdin/stdout JSON-RPC)
npx baselings-mcpClaude Desktopの設定
{
"mcpServers": {
"baselings": {
"command": "npx",
"args": ["baselings-mcp"],
"env": { "GAME_WALLET_KEY": "0x..." }
}
}
}クイックスタート — SDK
const baselings = require('baselings-mcp');
const ctx = baselings.createContext(process.env.GAME_WALLET_KEY);
// Read state
const balances = await baselings.state.getBalances(ctx);
const pets = await baselings.state.getMyBaselings(ctx);
// Strategy playbooks
const strats = baselings.strategies.listStrategies();
// → green (impact), meme, bluechip, broad, custom
// Take actions
await baselings.actions.buyEgg(ctx, 'random');
await baselings.actions.feedBaseling(ctx, tokenId, 'burgers', amount);
await baselings.actions.claimPoop(ctx, [tokenId]);REST API(読み取りにはウォレット不要)
ライブURL: https://tasern.quest/api/baseling/agent/
エンドポイント | 説明 |
| ゲーム概要 + 全エンドポイント |
| 残高 + Baselingの概要 |
| 所有するすべてのBaseling |
| オンチェーン上のBaselingの状態 |
| 戸棚の食料在庫 |
| すべてのガーデンプールの状態 |
| ワーカーの割り当て |
| 所有する家 |
| 請求可能なPOOP |
| 現在の卵の価格 |
| グローバルなゲーム統計 |
| MfTバーンエンジンモデル |
| ライブオンチェーンメトリクス |
| MfTを購入すべき理由 |
| 経済制約 + ビルド順序 |
| 目標ジョブに必要な食料 |
| 現在の経済ビルドフェーズ |
MCPツール(35種類)
読み取り (10): get_balances, get_my_baselings, get_baseling, get_food_stock, get_garden_status, get_assignments, get_houses, get_pending_poop, get_egg_prices, get_global_stats
書き込み (14): ensure_approvals, buy_egg, hatch_egg, buy_food, feed_baseling, claim_poop, assign_worker, unassign_worker, deposit_to_garden, buy_house, assign_to_house, unassign_from_house, deposit_usdc, withdraw_usdc
戦略 (3): welcome, choose_strategy, next_actions
トークノミクス (3): mft_flywheel, tokenomics_metrics, why_mft
経済 (3): build_phase, feeding_guide, economy_rules
情報 (1): game_guide
戦略プレイブック
最初に以下のいずれかの考え方を選択してください:
戦略 | フォーカス | 食料ファミリー |
green | インパクト資産、カーボンクレジット | TGN, BURGERS, CHAR |
meme | ミームトークンの利回り | BRETT, BUSTER, BURGERS |
bluechip | ブルーチップペア | WETH, cbBTC |
broad | バランス型(インパクト50%、ブルー25%、ミーム25%) | すべて |
custom | エージェントが決定 | エージェントが選択 |
トークンアドレス(Baseチェーン)
MfT:
0x8FB87d13B40B1A67B22ED1a17e2835fe7e3a9bA3POOP:
0x126555aecBAC290b25644e4b7f29c016aE95f4dcBaselingNFT:
0xFCb825491490284189C75fD330Fd08Df5E9217b9
リンク
チェーン: Base (8453)
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
- AlicenseAqualityDmaintenanceMCP server for Lucille Protocol — let your AI agent play the game, win rewards, and earn NFTs on Base.148MIT
- AlicenseAqualityDmaintenanceAn MCP server for AI agents to lock, manage, and withdraw LP tokens on Base with time-based unlock.6171MIT
- AlicenseAqualityDmaintenanceAn MCP server for AI agents to discover and trade new token launches on Base chain.5321MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Taskmarket that enables AI agents to discover, claim, submit, and track on-chain bounty tasks on the Base-based decentralized task marketplace, including wallet operations, pitch systems, and submission management.455MIT
Related MCP Connectors
HiveCapital MCP Server — autonomous investment layer for AI agents
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Agent-commerce MCP server for x402/USDC payments and affiliate splits on Base.
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/jimbo530/baselings-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server