by firebase
Genkit β consume MCP resources or expose powerful Genkit tools as a server for streamlined development and integration.
β 5.6K
GitHub stars
Provides a knowledge graph interface that can both consume MCP resources and expose Genkit AI framework tools. Manages entities, relations, and observations in a searchable graph structure.
Genkit is an official MCP server published by firebase that provides AI assistants with tools and capabilities via the Model Context Protocol. Genkit β consume MCP resources or expose powerful Genkit tools as a server for streamlined development and integration. It is categorized under ai ml, developer tools. This server exposes 9 tools that AI clients can invoke during conversations and coding sessions.
You can install Genkit in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
Apache-2.0
Genkit is released under the Apache-2.0 license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research β Summarize β Create document β Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Genkit reduced integration guesswork β categories and install configs on the listing matched the upstream repo.
Strong directory entry: Genkit surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: Genkit is the kind of server we cite when onboarding engineers to host + tool permissions.
I recommend Genkit for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Useful MCP listing: Genkit is the kind of server we cite when onboarding engineers to host + tool permissions.
Strong directory entry: Genkit surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Genkit for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Genkit surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Genkit reduced integration guesswork β categories and install configs on the listing matched the upstream repo.
Genkit reduced integration guesswork β categories and install configs on the listing matched the upstream repo.
showing 1-10 of 60

Genkit is an open-source framework for building full-stack AI-powered applications, built and used in production by Google's Firebase. It provides SDKs for multiple programming languages with varying levels of stability:
It offers a unified interface for integrating AI models from providers like Google, OpenAI, Anthropic, Ollama, and more. Rapidly build and deploy production-ready chatbots, automations, and recommendation systems using streamlined APIs for multimodal content, structured outputs, tool calling, and agentic workflows.
Get started with just a few lines of code:
import { genkit } from 'genkit';
import { googleAI } from '@genkit-ai/google-genai';
const ai = genkit({ plugins: [googleAI()] });
const { text } = await ai.generate({
model: googleAI.model('gemini-2.5-flash'),
prompt: 'Why is Firebase awesome?'
});
Play with AI sample apps, with visualizations of the Genkit code that powers them, at no cost to you.
Genkit simplifies AI integration with an open-source SDK and unified APIs that work across various model providers and programming languages. It abstracts away complexity so you can focus on delivering great user experiences.
Some key features offered by Genkit include:
Genkit is designed for server-side deployment in multiple language environments, and also provides seamless client-side integration through dedicated helpers and client SDKs.
Genkit provides a CLI and a local UI to streamline your AI development workflow.
The Genkit CLI includes commands for running and evaluating your Genkit functions (flows) and collecting telemetry and logs.
npm install -g genkit-cligenkit start -- <command to run your code>The Genkit developer UI is a local interface for testing, debugging, and iterating on your AI application.
Key features:
Want to skip the local setup? Click below to try out Genkit using Firebase Studio, Google's AI-assisted workspace for full-stack app development in the cloud.
<a href="https://studio.firebase.google.com/new/genkit"> <img height="32" alt="Open in Firebase Studio" src="https://cdn.firebasestudio.dev/btn/open_bright_32.svg"> </a>Contributions to Genkit are welcome and highly appreciated! See our Contribution Guide to get started.
Genkit is built by Firebase with contributions from the Open Source Community.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
β Do
β Don't
π‘ Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
β Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
β Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.