Skip to content
VS Code

slush meme mcp for VS Code

io.github.spiry-ro/slush-meme-mcp

AI-native meme coin launchpad on Avalanche. Deploy tokens, simulate trades, query risk.

client:VS Code transport:stdio runtime:npm

Install slush meme mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hasura-graphql-endpoint",
      "description": "HASURA_GRAPHQL_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hasura-graphql-admin-secret",
      "description": "HASURA_GRAPHQL_ADMIN_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-port",
      "description": "MCP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "risk-scoring-url",
      "description": "RISK_SCORING_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "token-deployer-url",
      "description": "TOKEN_DEPLOYER_URL",
      "password": true
    }
  ],
  "servers": {
    "slush-meme-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "slush-meme-mcp-server"
      ],
      "env": {
        "HASURA_GRAPHQL_ENDPOINT": "${input:hasura-graphql-endpoint}",
        "HASURA_GRAPHQL_ADMIN_SECRET": "${input:hasura-graphql-admin-secret}",
        "MCP_PORT": "${input:mcp-port}",
        "RISK_SCORING_URL": "${input:risk-scoring-url}",
        "TOKEN_DEPLOYER_URL": "${input:token-deployer-url}"
      }
    }
  }
}

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

slush meme mcp in other clients