PluginBench
MCP Server
Maintained
MIT

io.github.1lystore/mcp-server MCP Server

io.github.1lystore/mcp-server

What is the io.github.1lystore/mcp-server MCP server?

MCP server for 1ly.store — buy/sell APIs and launch tokens on Bags.fm with USDC & $1LY.

How to install io.github.1lystore/mcp-server

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • ONELY_WALLET_SOLANA_KEY
    secret

    Path to Solana keypair JSON file (e.g. /home/user/.1ly/wallets/solana.json) or inline JSON byte array. Required for paid API calls and token tools (launch, trade, claim). Note: Claude Desktop does not expand ~, use absolute paths.

  • ONELY_WALLET_EVM_KEY
    secret

    Path to EVM private key file or 0x-prefixed hex string. Required for payments on Base network.

  • ONELY_API_KEY
    secret

    1ly.store seller API key. Auto-saved locally after running the 1ly_create_store tool — you do not need to set this manually. Required for seller tools: manage links, stats, withdrawals, keys, and profile.

  • ONELY_WALLET_PROVIDER

    Wallet provider to use. 'raw' (default) uses local key files via ONELY_WALLET_SOLANA_KEY or ONELY_WALLET_EVM_KEY. 'coinbase' uses Coinbase Agentic Wallet (Base network only, requires the wallet app running locally).

  • ONELY_NETWORK

    Preferred blockchain network for payments. 'solana' (default) or 'base'. Determines which wallet is used when an API supports both networks.

  • ONELY_SOLANA_RPC_URL

    Solana RPC endpoint URL. Defaults to https://api.mainnet-beta.solana.com. Use a private RPC (e.g. Helius, Quicknode) for better reliability and rate limits.

  • ONELY_BUDGET_PER_CALL

    Maximum USD amount allowed per single paid API call. Defaults to 1.00. The server will refuse any call priced above this limit.

  • ONELY_BUDGET_DAILY

    Maximum total USD spending per calendar day (UTC). Defaults to 50.00. Resets at UTC midnight. The server will refuse calls that would exceed this limit.

  • ONELY_BUDGET_STATE_FILE

    Path to the local JSON file used to track daily spending. Defaults to ~/.1ly-mcp-budget.json. Created automatically with owner-only permissions (0600).

  • ONELY_SOLANA_DRY_RUN

    Set to '1' to simulate Solana transactions without broadcasting to the blockchain. Returns a fake signature. Use for testing only — no real payments will be made.

  • ONELY_API_BASE

    Override the 1ly.store API base URL. Defaults to https://1ly.store. Only http://localhost:PORT is accepted as an alternative (for local development). Do not change in production.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@1ly/mcp-server"
      ],
      "env": {
        "ONELY_WALLET_SOLANA_KEY": "<YOUR_ONELY_WALLET_SOLANA_KEY>",
        "ONELY_WALLET_EVM_KEY": "<YOUR_ONELY_WALLET_EVM_KEY>",
        "ONELY_API_KEY": "<YOUR_ONELY_API_KEY>",
        "ONELY_WALLET_PROVIDER": "<YOUR_ONELY_WALLET_PROVIDER>",
        "ONELY_NETWORK": "<YOUR_ONELY_NETWORK>",
        "ONELY_SOLANA_RPC_URL": "<YOUR_ONELY_SOLANA_RPC_URL>",
        "ONELY_BUDGET_PER_CALL": "<YOUR_ONELY_BUDGET_PER_CALL>",
        "ONELY_BUDGET_DAILY": "<YOUR_ONELY_BUDGET_DAILY>",
        "ONELY_BUDGET_STATE_FILE": "<YOUR_ONELY_BUDGET_STATE_FILE>",
        "ONELY_SOLANA_DRY_RUN": "<YOUR_ONELY_SOLANA_DRY_RUN>",
        "ONELY_API_BASE": "<YOUR_ONELY_API_BASE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@1ly/mcp-server"
      ],
      "env": {
        "ONELY_WALLET_SOLANA_KEY": "<YOUR_ONELY_WALLET_SOLANA_KEY>",
        "ONELY_WALLET_EVM_KEY": "<YOUR_ONELY_WALLET_EVM_KEY>",
        "ONELY_API_KEY": "<YOUR_ONELY_API_KEY>",
        "ONELY_WALLET_PROVIDER": "<YOUR_ONELY_WALLET_PROVIDER>",
        "ONELY_NETWORK": "<YOUR_ONELY_NETWORK>",
        "ONELY_SOLANA_RPC_URL": "<YOUR_ONELY_SOLANA_RPC_URL>",
        "ONELY_BUDGET_PER_CALL": "<YOUR_ONELY_BUDGET_PER_CALL>",
        "ONELY_BUDGET_DAILY": "<YOUR_ONELY_BUDGET_DAILY>",
        "ONELY_BUDGET_STATE_FILE": "<YOUR_ONELY_BUDGET_STATE_FILE>",
        "ONELY_SOLANA_DRY_RUN": "<YOUR_ONELY_SOLANA_DRY_RUN>",
        "ONELY_API_BASE": "<YOUR_ONELY_API_BASE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@1ly/mcp-server"
      ],
      "env": {
        "ONELY_WALLET_SOLANA_KEY": "<YOUR_ONELY_WALLET_SOLANA_KEY>",
        "ONELY_WALLET_EVM_KEY": "<YOUR_ONELY_WALLET_EVM_KEY>",
        "ONELY_API_KEY": "<YOUR_ONELY_API_KEY>",
        "ONELY_WALLET_PROVIDER": "<YOUR_ONELY_WALLET_PROVIDER>",
        "ONELY_NETWORK": "<YOUR_ONELY_NETWORK>",
        "ONELY_SOLANA_RPC_URL": "<YOUR_ONELY_SOLANA_RPC_URL>",
        "ONELY_BUDGET_PER_CALL": "<YOUR_ONELY_BUDGET_PER_CALL>",
        "ONELY_BUDGET_DAILY": "<YOUR_ONELY_BUDGET_DAILY>",
        "ONELY_BUDGET_STATE_FILE": "<YOUR_ONELY_BUDGET_STATE_FILE>",
        "ONELY_SOLANA_DRY_RUN": "<YOUR_ONELY_SOLANA_DRY_RUN>",
        "ONELY_API_BASE": "<YOUR_ONELY_API_BASE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@1ly/mcp-server"
      ],
      "env": {
        "ONELY_WALLET_SOLANA_KEY": "<YOUR_ONELY_WALLET_SOLANA_KEY>",
        "ONELY_WALLET_EVM_KEY": "<YOUR_ONELY_WALLET_EVM_KEY>",
        "ONELY_API_KEY": "<YOUR_ONELY_API_KEY>",
        "ONELY_WALLET_PROVIDER": "<YOUR_ONELY_WALLET_PROVIDER>",
        "ONELY_NETWORK": "<YOUR_ONELY_NETWORK>",
        "ONELY_SOLANA_RPC_URL": "<YOUR_ONELY_SOLANA_RPC_URL>",
        "ONELY_BUDGET_PER_CALL": "<YOUR_ONELY_BUDGET_PER_CALL>",
        "ONELY_BUDGET_DAILY": "<YOUR_ONELY_BUDGET_DAILY>",
        "ONELY_BUDGET_STATE_FILE": "<YOUR_ONELY_BUDGET_STATE_FILE>",
        "ONELY_SOLANA_DRY_RUN": "<YOUR_ONELY_SOLANA_DRY_RUN>",
        "ONELY_API_BASE": "<YOUR_ONELY_API_BASE>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-server --env ONELY_WALLET_SOLANA_KEY=<YOUR_ONELY_WALLET_SOLANA_KEY> --env ONELY_WALLET_EVM_KEY=<YOUR_ONELY_WALLET_EVM_KEY> --env ONELY_API_KEY=<YOUR_ONELY_API_KEY> --env ONELY_WALLET_PROVIDER=<YOUR_ONELY_WALLET_PROVIDER> --env ONELY_NETWORK=<YOUR_ONELY_NETWORK> --env ONELY_SOLANA_RPC_URL=<YOUR_ONELY_SOLANA_RPC_URL> --env ONELY_BUDGET_PER_CALL=<YOUR_ONELY_BUDGET_PER_CALL> --env ONELY_BUDGET_DAILY=<YOUR_ONELY_BUDGET_DAILY> --env ONELY_BUDGET_STATE_FILE=<YOUR_ONELY_BUDGET_STATE_FILE> --env ONELY_SOLANA_DRY_RUN=<YOUR_ONELY_SOLANA_DRY_RUN> --env ONELY_API_BASE=<YOUR_ONELY_API_BASE> -- npx -y @1ly/mcp-server

Related MCP servers

Give your AI agent stealth web scraping with Cloudflare bypass and CSS selection, powered by Scrapling.

67k
Python
BSD-3-Clause
View repository →

Give your AI coding agent full control of a live Chrome browser for automation, debugging, and performance analysis.

45k
TypeScript
Apache-2.0
View repository →

Let AI agents manage your Puter files, websites, and serverless workers over MCP.

43k
TypeScript
AGPL-3.0
View repository →

Browser automation for AI agents via MCP, powering ByteDance's Agent TARS hybrid GUI/DOM browser control.

37k
TypeScript
Apache-2.0
View repository →

Run arbitrary shell commands from an MCP-connected AI agent.

37k
TypeScript
Apache-2.0
View repository →

Filesystem access MCP server from ByteDance's UI-TARS/Agent TARS ecosystem.

37k
TypeScript
Apache-2.0
View repository →