Druling MCP Server
Provides tools for interacting with Gmail, enabling AI agents to manage emails, send messages, and perform mailbox operations.
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., "@Druling MCP Servershow my MCP servers"
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.
Druling MCP Server
Install all dependencies
Run
pip install -r requirements-dev.txt
Related MCP server: Artificial Virtual Assistant (AVA)
How to run app using Docker with PostgreSQL
Install Docker Desktop
Run
docker compose up --buildRun
docker compose downto stop all services
How to run locally without postgres or docker
In database/core.py change the DATABASE_URL to sqlite
Run
make run
How to run tests
Run
pytestto run all tests
How to Add a New MCP Server
MCP (Model Context Protocol) servers provide tools and prompts for AI integrations. Follow these steps to add a new MCP server:
Step 1: Create the MCP Server Directory
Create a new directory under src/servers/ for your MCP server:
src/servers/<provider>/<service>/
__init__.py
mcp.py
outputs.py
prompts.pyFor example, to add a new "calendar" service under Google:
src/servers/google/calendar/
__init__.py
mcp.py
outputs.py
prompts.pyStep 2: Define Output Models (outputs.py)
Create Pydantic models for your tool outputs:
Step 3: Define Prompts (prompts.py)
Create prompts for your MCP server (optional):
Step 4: Create the MCP Server (mcp.py)
Create the MCP server class by extending BaseMCPServer:
Step 5: Register the MCP Server
Update src/setup/mcp.py to register your new MCP server:
from src.servers.google.calendar.mcp import CalendarMCPServer
# Add to existing imports and initializations
calendar_server = CalendarMCPServer()
MCP_PATH = {
# ...existing servers...
"calendar": calendar_server,
}The server will automatically:
Be mounted at
/<server_name>(e.g.,/calendar)Have session management handled by the lifespan context
Include authentication and context middleware
How to Add a New REST API
REST APIs are used for standard HTTP endpoints. Follow these steps to add a new API:
Step 1: Create the API Directory
Create a new directory under src/app/ for your API:
src/app/<feature>/
__init__.py
api.pyFor example, to add a "users" API:
src/app/users/
__init__.py
api.pyStep 2: Create the API Router (api.py)
Create the FastAPI router with your endpoints:
Step 3: Register the API Router
Update src/setup/api.py to include your new router:
Project Structure Overview
src/
├── main.py # FastAPI app entry point
├── setup/
│ ├── api.py # REST API route registration
│ └── mcp.py # MCP server registration
├── app/ # REST API endpoints
│ ├── health_check/
│ ├── auth/
│ └── <your_api>/
├── servers/ # MCP servers
│ ├── google/
│ │ ├── gmail/
│ │ ├── drive/
│ │ └── <your_service>/
│ ├── druling/
│ └── <your_provider>/
├── core/
│ ├── service/ # Base MCP server class
│ ├── middleware/ # Auth and context middleware
│ ├── exceptions/ # Custom exceptions
│ └── utils/ # Utility functions
└── clients/
└── backend/ # Backend API clientKey Concepts
MCP Server
Extends
BaseMCPServerfromsrc.core.serviceProvides tools (functions) and prompts for AI agents
Uses
@self._mcp.tool()decorator to register toolsUses
mcp_meta()for tool metadataAccess user context via
self.get_context()
REST API
Uses FastAPI's
APIRouterRegistered via
app.include_router()Standard REST conventions with proper status codes
Backend Client
Use
BackendClientfromsrc.clients.backend.clientto call backend servicesSupports
get(),post(),put(),delete()methodsPass
contextfor authenticated requests
This server cannot be installed
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 Servers
- AlicenseAqualityDmaintenanceA custom MCP server that provides AI applications with access to an Artificial Virtual Assistant (AVA) toolset, enabling Gmail integration and task management through natural language.Last updated1MIT
- Alicense-qualityDmaintenanceAn MCP server that provides AI applications with a toolset for an Artificial Virtual Assistant (AVA) integrated with the Gmail API. It enables users to automate email management and personal tasks through secure Google OAuth authentication.Last updated1Apache 2.0
- AlicenseBqualityDmaintenanceAn MCP server for automating Google Workspace applications including Sheets, Apps Script, Drive, Docs, and Gmail. It enables users to manipulate spreadsheets, edit scripts, manage files, and send emails directly from conversational AI interfaces.Last updated31MIT
- Alicense-qualityDmaintenanceA comprehensive MCP server integrating Google Docs, Sheets, Drive, Gmail, Calendar, and Apps Script APIs, featuring unique Apps Script support for AI-driven automation.Last updated168MIT
Related MCP Connectors
An MCP server that integrates with Discord to provide AI-powered features.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/druling/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server