Dataproc MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DATAPROC_MCP_TRANSPORT | No | Custom transport method for the MCP server | |
| GOOGLE_APPLICATION_CREDENTIALS | No | Path to service account JSON file for Google Cloud authentication |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_clustersB | List Dataproc clusters in a project and region. |
| create_clusterB | Create a new Dataproc cluster. |
| delete_clusterB | Delete a Dataproc cluster. |
| get_clusterA | Get details of a specific Dataproc cluster. |
| submit_jobB | Submit a job to a Dataproc cluster. |
| list_jobsC | List jobs in a Dataproc cluster. |
| get_jobC | Get details of a specific job. |
| cancel_jobA | Cancel a running job. |
| create_batch_jobB | Create a Dataproc batch job. |
| list_batch_jobsC | List Dataproc batch jobs. |
| get_batch_jobB | Get details of a specific batch job. |
| delete_batch_jobC | Delete a batch job. |
| compare_batch_jobsA | Compare two Dataproc batch jobs and return detailed differences. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_clusters_resource | Get list of all Dataproc clusters. |
| get_jobs_resource | Get list of all Dataproc jobs. |
TDQS
Scored across 13 tools
Most tools have clear distinct purposes targeting specific Dataproc resources (clusters, batch jobs, regular jobs). However, there is some potential overlap between 'cancel_job' and 'delete_batch_job' as both involve termination operations, and 'submit_job' vs 'create_batch_job' might cause confusion about when to use each, though descriptions clarify batch vs cluster job contexts.
Excellent consistency with a clear verb_noun pattern throughout (e.g., create_cluster, list_batch_jobs, get_job). All tools use snake_case with descriptive verbs (create, delete, get, list, submit, cancel, compare), making them predictable and easy to understand.
13 tools is well-scoped for a Dataproc server covering clusters, batch jobs, and regular jobs. Each tool earns its place by providing essential operations (CRUD, listing, comparison) without unnecessary redundancy, fitting the domain's complexity appropriately.
The toolset provides strong coverage for Dataproc operations, including CRUD for clusters and batch jobs, job management, and listing. Minor gaps include no update operations for clusters or batch jobs (e.g., update_cluster, update_batch_job) and no tool for stopping or pausing clusters, but core workflows are well-supported.