Skip to main content
Glama

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-mcp

Claude 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/

エンドポイント

説明

GET /agent/guide

ゲーム概要 + 全エンドポイント

GET /agent/status/:wallet

残高 + Baselingの概要

GET /agent/baselings/:wallet

所有するすべてのBaseling

GET /agent/baseling/:tokenId

オンチェーン上のBaselingの状態

GET /agent/food/:wallet

戸棚の食料在庫

GET /agent/gardens

すべてのガーデンプールの状態

GET /agent/assignments/:wallet

ワーカーの割り当て

GET /agent/houses/:wallet

所有する家

GET /agent/poop/:wallet

請求可能なPOOP

GET /agent/prices

現在の卵の価格

GET /agent/stats

グローバルなゲーム統計

GET /agent/tokenomics/flywheel

MfTバーンエンジンモデル

GET /agent/tokenomics/metrics

ライブオンチェーンメトリクス

GET /agent/tokenomics/pitch

MfTを購入すべき理由

GET /agent/economy/rules

経済制約 + ビルド順序

GET /agent/economy/feeding/:job

目標ジョブに必要な食料

GET /agent/economy/phase/:wallet

現在の経済ビルドフェーズ

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: 0x8FB87d13B40B1A67B22ED1a17e2835fe7e3a9bA3

  • POOP: 0x126555aecBAC290b25644e4b7f29c016aE95f4dc

  • BaselingNFT: 0xFCb825491490284189C75fD330Fd08Df5E9217b9

リンク

Install Server
A
license - permissive license
B
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity
Issues opened vs closed

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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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