Nano-Banana-MCP
The Nano-Banana MCP server provides AI-powered image generation and editing capabilities using Google's Gemini 2.5 Flash Image API.
Core Capabilities:
Generate new images from text descriptions (
generate_image)Edit specific images by providing file paths and modification prompts (
edit_image)Continue editing iteratively on the last processed image for seamless refinement (
continue_editing)Use reference images during editing for style transfer or guidance
Configure API access by setting up your Gemini API key (
configure_gemini_token)Check configuration status to verify API key setup (
get_configuration_status)Get last image information to retrieve details like file path and size (
get_last_image_info)
Key Features:
Cross-platform file management with automatic saving to platform-appropriate locations
Organized naming conventions for generated images
Multiple configuration methods (environment variables, config file)
Compatible with Claude Code, Cursor, and other MCP clients
Iterative workflow support for refining and improving visual assets
Provides AI image generation and editing capabilities using Google's Gemini 2.5 Flash Image API, allowing users to create new images from text descriptions, edit existing images with prompts, and perform iterative image modifications
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Nano-Banana-MCPgenerate an image of a cute robot holding a banana"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Nano-Banana MCP Server 🍌
🤖 This project was entirely generated by Claude Code - an AI coding assistant that can create complete, production-ready applications from scratch.
A Model Context Protocol (MCP) server that provides AI image generation and editing capabilities using Google's Gemini 2.5 Flash Image API. Generate stunning images, edit existing ones, and iterate on your creations with simple text prompts.
✨ Features
🎨 Generate Images: Create new images from text descriptions
✏️ Edit Images: Modify existing images with text prompts
🔄 Iterative Editing: Continue editing the last generated/edited image
🖼️ Multiple Reference Images: Use reference images for style transfer and guidance
🌍 Cross-Platform: Smart file paths for Windows, macOS, and Linux
🔧 Easy Setup: Simple configuration with API key
📁 Auto File Management: Automatic image saving with organized naming
Related MCP server: codeweaver-mcp
🔑 Setup
Get your Gemini API key:
Visit Google AI Studio
Create a new API key
Copy it for configuration
Configure the MCP server: See configuration examples for your specific client below (Claude Code, Cursor, or other MCP clients).
💻 Usage with Claude Code
Configuration:
Add this to your Claude Code MCP settings:
Option A: With environment variable (Recommended - Most Secure)
{
"mcpServers": {
"nano-banana": {
"command": "npx",
"args": ["nano-banana-mcp"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
}
}
}Option B: Without environment variable
{
"mcpServers": {
"nano-banana": {
"command": "npx",
"args": ["nano-banana-mcp"]
}
}
}Usage Examples:
Generate an image of a sunset over mountainsEdit this image to add some birds in the skyContinue editing to make it more dramatic🎯 Usage with Cursor
Configuration:
Add to your Cursor MCP configuration:
Option A: With environment variable (Recommended)
{
"nano-banana": {
"command": "npx",
"args": ["nano-banana-mcp"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
}
}Option B: Without environment variable
{
"nano-banana": {
"command": "npx",
"args": ["nano-banana-mcp"]
}
}Usage Examples:
Ask Cursor to generate images for your app
Create mockups and prototypes
Generate assets for your projects
🔧 For Other MCP Clients
If you're using a different MCP client, you can configure nano-banana-mcp using any of these methods:
Configuration Methods
Method A: Environment Variable in MCP Config (Recommended)
{
"nano-banana": {
"command": "npx",
"args": ["nano-banana-mcp"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
}
}Method B: System Environment Variable
export GEMINI_API_KEY="your-gemini-api-key-here"
npx nano-banana-mcpMethod C: Using the Configure Tool
npx nano-banana-mcp
# The server will prompt you to configure when first used
# This creates a local .nano-banana-config.json file🛠️ Available Commands
generate_image
Create a new image from a text prompt.
generate_image({
prompt: "A futuristic city at night with neon lights"
})edit_image
Edit a specific image file.
edit_image({
imagePath: "/path/to/image.png",
prompt: "Add a rainbow in the sky",
referenceImages?: ["/path/to/reference.jpg"] // optional
})continue_editing
Continue editing the last generated/edited image.
continue_editing({
prompt: "Make it more colorful",
referenceImages?: ["/path/to/style.jpg"] // optional
})get_last_image_info
Get information about the last generated image.
get_last_image_info()configure_gemini_token
Configure your Gemini API key.
configure_gemini_token({
apiKey: "your-gemini-api-key"
})get_configuration_status
Check if the API key is configured.
get_configuration_status()⚙️ Configuration Priority
The MCP server loads your API key in the following priority order:
🥇 MCP Configuration Environment Variables (Highest Priority)
Set in your
claude_desktop_config.jsonor MCP client configMost secure as it's contained within the MCP configuration
Example:
"env": { "GEMINI_API_KEY": "your-key" }
🥈 System Environment Variables
Set in your shell/system environment
Example:
export GEMINI_API_KEY="your-key"
🥉 Local Configuration File (Lowest Priority)
Created when using the
configure_gemini_tokentoolStored as
.nano-banana-config.jsonin current directoryAutomatically ignored by Git and NPM
💡 Recommendation: Use Method 1 (MCP config env variables) for the best security and convenience.
📁 File Storage
Images are automatically saved to platform-appropriate locations:
Windows:
%USERPROFILE%\\Documents\\nano-banana-images\\macOS/Linux:
./generated_imgs/(in current directory)System directories:
~/nano-banana-images/(when run from system paths)
File naming convention:
Generated images:
generated-[timestamp]-[id].pngEdited images:
edited-[timestamp]-[id].png
🎨 Example Workflows
Basic Image Generation
generate_image- Create your base imagecontinue_editing- Refine and improvecontinue_editing- Add final touches
Style Transfer
generate_image- Create base contentedit_image- Use reference images for stylecontinue_editing- Fine-tune the result
Iterative Design
generate_image- Start with a conceptget_last_image_info- Check current statecontinue_editing- Make adjustmentsRepeat until satisfied
🔧 Development
This project was created with Claude Code and follows these technologies:
TypeScript - Type-safe development
Node.js - Runtime environment
Zod - Schema validation
Google GenAI - Image generation API
MCP SDK - Model Context Protocol
Local Development
# Clone the repository
git clone https://github.com/claude-code/nano-banana-mcp.git
cd nano-banana-mcp
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run tests
npm test📋 Requirements
Node.js 18.0.0 or higher
Gemini API key from Google AI Studio
Compatible with Claude Code, Cursor, and other MCP clients
🤝 Contributing
This project was generated by Claude Code, but contributions are welcome! Please feel free to:
Report bugs
Suggest new features
Submit pull requests
Improve documentation
📄 License
MIT License - see LICENSE file for details.
🙏 Acknowledgments
Claude Code - For generating this entire project
Google AI - For the powerful Gemini 2.5 Flash Image API
Anthropic - For the Model Context Protocol
Open Source Community - For the amazing tools and libraries
📞 Support
🐛 Issues: GitHub Issues
📖 Documentation: This README and inline code comments
💬 Discussions: GitHub Discussions
✨ Generated with love by Claude Code - The future of AI-powered development is here!
Available Tools
6 toolsconfigure_gemini_tokenC
Configure your Gemini API token for nano-banana image generation
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | Yes | Your Gemini API key from Google AI Studio |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states this is a configuration tool, implying a write/mutation operation, but doesn't describe key behaviors: whether this overwrites existing tokens, requires specific permissions, has side effects (e.g., affecting other tools), or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no wasted words. It's front-loaded with the core purpose ('Configure your Gemini API token') and includes necessary context ('for nano-banana image generation'). Every part of the sentence earns its place by specifying the action, resource, and application scope efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a mutation operation for API configuration) and the lack of annotations and output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., success status, error messages), how it interacts with sibling tools (e.g., 'generate_image'), or behavioral details like persistence or validation. For a configuration tool with no structured support, more context is needed to guide the agent effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description doesn't add any parameter-specific information beyond what's in the input schema, which has 100% coverage for the single parameter 'apiKey'. The schema already describes it as 'Your Gemini API key from Google AI Studio'. Since schema coverage is high, the baseline score is 3, as the description doesn't compensate but also doesn't detract from the schema's documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Configure your Gemini API token for nano-banana image generation.' It specifies the verb ('configure') and resource ('Gemini API token'), and mentions the context ('for nano-banana image generation'), which helps distinguish it from generic configuration tools. However, it doesn't explicitly differentiate from sibling tools like 'get_configuration_status', which might be related.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal usage guidance. It implies this tool should be used to set up API tokens for image generation, but it doesn't specify when to use it (e.g., before generating images, when tokens expire) or when not to use it (e.g., if already configured). No alternatives or prerequisites are mentioned, leaving the agent with unclear operational context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
continue_editingA
Continue editing the LAST image that was generated or edited in this session, optionally using additional reference images. Use this for iterative improvements, modifications, or changes to the most recent image. This automatically uses the previous image without needing a file path.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Text describing the modifications/changes/improvements to make to the last image (e.g., 'change the hat color to red', 'remove the background', 'add flowers') | |
| referenceImages | No | Optional array of file paths to additional reference images to use during editing (e.g., for style transfer, adding elements from other images, etc.) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses key behavioral traits: it's a mutation tool (editing implies changes), it tracks session state ('LAST image in this session'), and it has automatic referencing. However, it lacks details on permissions, rate limits, error conditions, or what happens if no previous image exists, leaving gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by usage context and a key behavioral note. Every sentence adds value without redundancy, making it efficient and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (mutation with session state) and no annotations or output schema, the description does well by covering purpose, usage, and key behavior. However, it lacks details on return values, error handling, or session management specifics, which would be helpful for full completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents both parameters. The description adds no additional meaning beyond what the schema provides, such as examples or edge cases for parameters. Baseline 3 is appropriate when the schema does all the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('continue editing'), target resource ('the LAST image that was generated or edited in this session'), and scope ('iterative improvements, modifications, or changes'). It distinguishes from sibling tools like 'edit_image' by emphasizing it works on the most recent image automatically without file paths.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool ('for iterative improvements, modifications, or changes to the most recent image') and distinguishes it from alternatives by noting it 'automatically uses the previous image without needing a file path,' which contrasts with tools like 'edit_image' that likely require explicit file references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
edit_imageA
Edit a SPECIFIC existing image file, optionally using additional reference images. Use this when you have the exact file path of an image to modify.
| Name | Required | Description | Default |
|---|---|---|---|
| imagePath | Yes | Full file path to the main image file to edit | |
| prompt | Yes | Text describing the modifications to make to the existing image | |
| referenceImages | No | Optional array of file paths to additional reference images to use during editing (e.g., for style transfer, adding elements, etc.) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states this is an edit/mutation operation (implying destructive changes) and mentions optional reference images for style transfer/element addition, but doesn't disclose permission requirements, rate limits, error conditions, or what happens to the original file. For a mutation tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise with two sentences that each earn their place. The first sentence states the core functionality, and the second provides crucial usage guidance. There's zero wasted language or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description provides adequate purpose and usage guidance but lacks important behavioral context. It doesn't explain what the tool returns, error conditions, or mutation specifics. Given the complexity of image editing operations, more completeness would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all three parameters. The description adds minimal value beyond the schema - it reinforces that 'imagePath' must be exact and 'referenceImages' are optional, but doesn't provide additional syntax, format details, or constraints. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verb ('Edit') and resource ('a SPECIFIC existing image file'), and distinguishes it from sibling tools like 'generate_image' (which creates new images) by emphasizing modification of existing files. The phrase 'optionally using additional reference images' adds further specificity about functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool ('when you have the exact file path of an image to modify'), which clearly differentiates it from 'generate_image' (for creating new images) and 'continue_editing' (presumably for ongoing edits). It establishes clear prerequisites for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_imageA
Generate a NEW image from text prompt. Use this ONLY when creating a completely new image, not when modifying an existing one.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Text prompt describing the NEW image to create from scratch |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that this creates new content ('generate a NEW image') but doesn't mention behavioral traits like rate limits, quality expectations, generation time, or output format. The description adds some context about the creation scope but lacks operational details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste. The first sentence states the core purpose, and the second provides critical usage guidance. Every word earns its place, and the structure is front-loaded with essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no annotations and no output schema, the description is adequate but has gaps. It covers purpose and usage boundaries well, but doesn't address what the tool returns (image data, URL, metadata) or any operational constraints. The context is partially complete but lacks output information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single 'prompt' parameter. The description adds minimal value by reinforcing that the prompt should describe 'the NEW image to create from scratch', which slightly expands on the schema's description. Baseline 3 is appropriate when schema does most of the work.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('generate') and resource ('image') with specific scope ('from text prompt'). It explicitly distinguishes from siblings by stating 'not when modifying an existing one', which differentiates it from tools like 'edit_image'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance with 'Use this ONLY when creating a completely new image, not when modifying an existing one.' This clearly defines when to use this tool versus alternatives like 'edit_image' and establishes clear boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_configuration_statusB
Check if Gemini API token is configured
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't describe what 'check' entails - whether it returns a simple boolean, detailed status information, error messages if unconfigured, or any side effects. For a tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that communicates the core purpose without any wasted words. It's appropriately sized for a simple tool and front-loads the essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no annotations and no output schema, the description should provide more complete context about what the check returns and how to interpret results. As a configuration status tool, users need to know what format the status information comes in and what actions to take based on the result, but this is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, and it doesn't need to compensate for any schema gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Check') and resource ('Gemini API token configuration'), making it immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'configure_gemini_token' beyond the obvious check vs. configure distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (like needing to run this before using other tools), nor does it suggest when to use 'configure_gemini_token' instead. The usage context is implied but not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_last_image_infoA
Get information about the last generated/edited image in this session (file path, size, etc.). Use this to check what image is currently available for continue_editing.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool retrieves information (e.g., file path, size) about the last image in the session, which implies read-only behavior, but lacks details on error handling, session scope, or data freshness. This is adequate but with gaps in behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with zero waste: the first states the purpose, and the second provides usage guidance. It is front-loaded with essential information and appropriately sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no annotations, no output schema), the description is nearly complete: it explains what the tool does and when to use it. However, it lacks details on output format (e.g., what 'etc.' includes) and potential errors, which could be improved for full completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately adds no parameter details, maintaining focus on the tool's purpose and usage, which aligns with the baseline for zero parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('Get information about') and resources ('last generated/edited image'), distinguishing it from siblings like 'generate_image' or 'edit_image' by focusing on retrieval of metadata rather than image creation or modification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use this tool ('to check what image is currently available for continue_editing'), providing clear context and distinguishing it from alternatives by linking directly to the 'continue_editing' sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose with no ambiguity. The descriptions explicitly differentiate between generating new images, editing specific files, continuing from the last image, and configuration tasks. The boundaries are well-defined, preventing misselection.
All tools follow a consistent verb_noun naming pattern (e.g., configure_gemini_token, generate_image, edit_image). The naming is uniform throughout, using snake_case and clear action-object pairs without any deviations.
With 6 tools, this server is well-scoped for image generation and editing. Each tool earns its place by covering essential operations like configuration, generation, editing, continuation, and status checks, without being overly sparse or bloated.
The tool set provides complete coverage for the nano-banana image generation domain. It includes configuration setup, new image generation, specific image editing, iterative editing, status checks, and session management, with no obvious gaps or dead ends for agents.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for NanoBanana AI image generation and editing
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that gives your AI access to the source code and docs of all public github repos
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP of MCPs. Automatic discovery and configure MCP servers on your local machine. Integration with Claude and Cursor.53Apache 2.0
- AlicenseNot gradedqualityCmaintenanceToken-efficient MCP server for multi-language project analysis (Java, TypeScript, JavaScript, Markdown, Python) with plugins, semantic search, and static analysis.MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server wrapping the Cursor CLI agent, enabling Claude Code and other MCP clients to delegate tasks to Cursor's AI agent for file writing, bash commands, and codebase queries.
- AlicenseNot gradedqualityDmaintenanceAn experimental MCP server offering calculator, GitHub repository fetching, a movie database resource, and JavaScript code review capabilities. Designed for learning and compatible with Cursor and Claude Desktop.2,0131MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ConechoAI/Nano-Banana-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server