Skip to content
VS Code

mcp server for VS Code

io.github.1lystore/mcp-server

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

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "onely-wallet-solana-key",
      "description": "ONELY_WALLET_SOLANA_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-wallet-evm-key",
      "description": "ONELY_WALLET_EVM_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-api-key",
      "description": "ONELY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-wallet-provider",
      "description": "ONELY_WALLET_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-network",
      "description": "ONELY_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-solana-rpc-url",
      "description": "ONELY_SOLANA_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-budget-per-call",
      "description": "ONELY_BUDGET_PER_CALL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-budget-daily",
      "description": "ONELY_BUDGET_DAILY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-budget-state-file",
      "description": "ONELY_BUDGET_STATE_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-solana-dry-run",
      "description": "ONELY_SOLANA_DRY_RUN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "onely-api-base",
      "description": "ONELY_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@1ly/mcp-server"
      ],
      "env": {
        "ONELY_WALLET_SOLANA_KEY": "${input:onely-wallet-solana-key}",
        "ONELY_WALLET_EVM_KEY": "${input:onely-wallet-evm-key}",
        "ONELY_API_KEY": "${input:onely-api-key}",
        "ONELY_WALLET_PROVIDER": "${input:onely-wallet-provider}",
        "ONELY_NETWORK": "${input:onely-network}",
        "ONELY_SOLANA_RPC_URL": "${input:onely-solana-rpc-url}",
        "ONELY_BUDGET_PER_CALL": "${input:onely-budget-per-call}",
        "ONELY_BUDGET_DAILY": "${input:onely-budget-daily}",
        "ONELY_BUDGET_STATE_FILE": "${input:onely-budget-state-file}",
        "ONELY_SOLANA_DRY_RUN": "${input:onely-solana-dry-run}",
        "ONELY_API_BASE": "${input:onely-api-base}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp server in other clients