Google Agent Development Kit (ADK) is Google's framework for building AI agents that can use tools, maintain state, and orchestrate multi-step workflows. It supports MCP natively, meaning ADK agents can connect to any MCP server endpoint for tool access.
ADK agents are powerful at planning and execution, but they need tools to interact with external systems. Connecting MCP servers gives your ADK agent access to CRMs, dashboards, ticketing systems, and any web app without writing custom tool code.
google-adk installedYour endpoint looks like: https://datafaucet.dev/mcp/your-server-id
In your ADK agent configuration, add the MCP server as a tool source:
from google.adk import Agent
from google.adk.tools import McpToolset
# Connect to your DataFaucet MCP server
mcp_tools = McpToolset(
endpoint="https://datafaucet.dev/mcp/your-server-id",
transport="sse"
)
agent = Agent(
model="gemini-2.0-flash",
tools=[mcp_tools],
instructions="You have access to project management tools. Use them to check ticket status and update tasks."
)Run your agent and ask it to use the connected tools:
response = agent.run("What tickets are assigned to me this sprint?")
print(response)The agent discovers available tools from the MCP server automatically and calls them as needed.
ADK agents can connect to multiple MCP servers simultaneously. Each server provides a different set of tools:
crm_tools = McpToolset(endpoint="https://datafaucet.dev/mcp/crm-server")
analytics_tools = McpToolset(endpoint="https://datafaucet.dev/mcp/analytics-server")
slack_tools = McpToolset(endpoint="https://datafaucet.dev/mcp/slack-server")
agent = Agent(
model="gemini-2.0-flash",
tools=[crm_tools, analytics_tools, slack_tools],
instructions="You can access CRM data, analytics dashboards, and Slack channels."
)Any web app DataFaucet can scan becomes available to your ADK agent:
Create your first three MCP servers free at DataFaucet, then connect them to your ADK agent using the config above.
For more on Google ADK vs DataFaucet, see our comparison page.
Create your Google ADK Docs MCP server in 60 seconds.
Try with Google ADK Docs →{
"mcpServers": {
"google-adk-docs": {
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}Replace YOUR_SERVER_ID with the ID from your DataFaucet dashboard after creating your Google ADK Docs server.
Point DataFaucet at Google ADK Docs and get a working server in 60 seconds.
Create Google ADK Docs server free →After creating, add to Claude Desktop:
"google-adk-docs": {
"url": "https://datafaucet.dev/api/mcp/YOUR_ID/sse"
}Free plan includes 3 servers. Upgrade to Pro for unlimited →
A startup connected Stripe, Linear, Slack, Vercel, and PostHog to AI via MCP. Standup prep went from 15 minutes to one prompt.
Step-by-step guide to debugging MCP server connections. Fix SSE timeouts, tool discovery failures, auth errors, and protocol mismatches.
Top MCP servers for security teams: vulnerability scanners, SIEM dashboards, secrets management, compliance tools, and incident response via AI.
See how DataFaucet compares
Point at any URL. Get a working MCP server in 60 seconds. No API docs needed.
Works with ChatGPT, Claude, Cursor, Copilot, Windsurf, JetBrains, and any MCP client
Get notified when we add more AI integrations
Join 500+ builders. New templates, guides, and MCP tips. No spam.