Bloomy MCP
A Model Context Protocol server that connects AI assistants to Bloom Growth's GraphQL API, enabling them to query data and execute operations against the Bloom Growth platform.
franccesco
Tools
get_query_details
Get detailed information about specific GraphQL queries. Retrieves argument requirements, return type information, descriptions, and example usage for the specified queries. Args: query_names: Comma-separated list of query names to get details for Returns: A YAML-formatted string containing detailed information about the requested queries
get_mutation_details
Get detailed information about specific GraphQL mutations. Retrieves argument requirements, return type information, descriptions, and example usage for the specified mutations. Args: mutation_names: Comma-separated list of mutation names to get details for Returns: A YAML-formatted string containing detailed information about the requested mutations
execute_query
Execute a GraphQL query or mutation with variables. Parses and executes the provided GraphQL operation string with optional variables. Args: query: Raw GraphQL query or mutation string variables: Optional dictionary of variables to use in the operation Returns: Dictionary containing the operation results or an error message string Raises: Exception: Handled internally, returns error message as string
get_authenticated_user_id
Get the ID of the currently authenticated user. Uses a special mutation to retrieve the ID of the user associated with the current API token. Returns: User ID string if successful, None if user not found, or error message string Raises: Exception: Handled internally, returns error message as string
README
Bloomy MCP
A Model Context Protocol (MCP) server for interacting with Bloom Growth's GraphQL API.
Overview
Bloomy MCP is a server that connects to Bloom Growth's GraphQL API and exposes it through the Model Context Protocol, enabling AI assistants to perform operations against the Bloom Growth platform.
Features
- Query Bloom Growth GraphQL API through MCP
- Retrieve query and mutation details
- Execute GraphQL queries and mutations via MCP tools
- Get authenticated user information
- Automatic schema introspection
Installation
Prerequisites
- Python 3.12 or higher
- Access to Bloom Growth API
- uv (recommended) or pip for package management
Package Management
This project recommends using uv
, a fast Python package installer and resolver that serves as a drop-in replacement for pip/pip-tools. It's significantly faster than traditional package managers.
Installing uv
curl -sSf https://astral.sh/uv/install.sh | sh
For other installation methods, see the uv documentation.
Setup
-
Clone this repository
-
Set up a Python virtual environment:
python -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
-
Install the package in development mode:
Using pip:
pip install -e .
Using uv (recommended):
uv pip install -e .
For development dependencies:
uv pip install -e ".[dev]"
Environment Variables
Create a .env
file with the following variables:
BLOOM_API_URL=<Your Bloom API URL>
BLOOM_API_TOKEN=<Your Bloom API Token>
Usage
Cursor Integration
To use this MCP server with Cursor (AI-powered IDE):
-
Go to Cursor > Cursor Settings > MCP
-
Click on "Add new MCP server"
-
Configure the server with the following details:
- Name: "Bloom Growth" (or "BG" or any name you prefer)
- Type: Command
- Command:
uv run --project /path/to/your/repo/ --env-file /path/to/your/repo/.env bloomy-server
Important: Replace
/path/to/your/repo/
with the actual path to your bloomy-mcp repository (e.g.,/Users/username/workspace/bloomy-mcp/
).
Running the Server
Start the Bloomy MCP server:
bloomy-server
Development Mode Inspection
For development and debugging purposes, you can use the MCP inspector tool:
npx @modelcontextprotocol/inspector bloomy-server
This allows you to inspect the MCP server's behavior and responses during development.
Recommended Tools
For optimal development workflow:
- direnv: Use for managing environment variables and automatically loading them when entering the project directory
- uv: Use for fast and reliable package management
Setting up direnv:
- Install direnv (e.g.,
brew install direnv
on macOS) - Create a
.envrc
file in your project root:export BLOOM_API_URL=your_api_url export BLOOM_API_TOKEN=your_api_token
- Run
direnv allow
to authorize the environment variables
This combination of tools (direnv + uv) provides an efficient environment for both secrets management and package management.
Available MCP Tools
The following MCP tools are available for AI assistants:
get_query_details
- Get detailed information about specific GraphQL queriesget_mutation_details
- Get detailed information about specific GraphQL mutationsexecute_query
- Execute a GraphQL query or mutation with variablesget_authenticated_user_id
- Get the ID of the currently authenticated user
Available MCP Resources
bloom://queries
- Get a list of all available queriesbloom://mutations
- Get a list of all available mutations
Development
Project Structure
src/
└── bloomy_mcp/
├── __init__.py # Package initialization
├── client.py # GraphQL client implementation
├── formatters.py # Data formatting utilities
├── introspection.py # GraphQL schema introspection
├── operations.py # GraphQL operation utilities
└── server.py # MCP server implementation
Dependencies
mcp[cli]
- Model Context Protocol servergql
- GraphQL client libraryhttpx
- HTTP clientpyyaml
- YAML processing
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
DuckDuckGo MCP Server
A Model Context Protocol (MCP) server that provides web search capabilities through DuckDuckGo, with additional features for content fetching and parsing.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Supabase MCP Server
A Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API. This server allows AI models and other clients to manage Supabase projects and organizations through a standardized interface.
YouTube Transcript MCP Server
This server retrieves transcripts for given YouTube video URLs, enabling integration with Goose CLI or Goose Desktop for transcript extraction and processing.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.