Skip to content
VS Code

Google Forms MCP for VS Code

io.github.a1-x-tech/mcp-google-forms

MCP server for the Google Forms API: create forms, manage questions, read responses and watches.

client:VS Code transport:stdio runtime:npm

Install Google Forms MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-forms-client-id",
      "description": "GOOGLE_FORMS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-client-secret",
      "description": "GOOGLE_FORMS_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-refresh-token",
      "description": "GOOGLE_FORMS_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-access-token",
      "description": "GOOGLE_FORMS_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-oauth-port",
      "description": "GOOGLE_FORMS_OAUTH_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-api-base",
      "description": "GOOGLE_FORMS_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-timeout-ms",
      "description": "GOOGLE_FORMS_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-forms-max-retries",
      "description": "GOOGLE_FORMS_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "mcp-google-forms": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-forms"
      ],
      "env": {
        "GOOGLE_FORMS_CLIENT_ID": "${input:google-forms-client-id}",
        "GOOGLE_FORMS_CLIENT_SECRET": "${input:google-forms-client-secret}",
        "GOOGLE_FORMS_REFRESH_TOKEN": "${input:google-forms-refresh-token}",
        "GOOGLE_FORMS_ACCESS_TOKEN": "${input:google-forms-access-token}",
        "GOOGLE_FORMS_OAUTH_PORT": "${input:google-forms-oauth-port}",
        "GOOGLE_FORMS_API_BASE": "${input:google-forms-api-base}",
        "GOOGLE_FORMS_TIMEOUT_MS": "${input:google-forms-timeout-ms}",
        "GOOGLE_FORMS_MAX_RETRIES": "${input:google-forms-max-retries}"
      }
    }
  }
}

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

Google Forms MCP in other clients