SQLite Database MCP Server with Google OAuth
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., "@SQLite Database MCP Server with Google OAuthlist all employees in the database"
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.
SQLite Database MCP Server with Google OAuth
A simple demonstration MCP (Model Context Protocol) Server in Python that allows an AI assistant to perform CRUD operations on a SQLite database. All MCP tools are protected using Google OAuth 2.0.
Overview
The server manages a single employees table in a SQLite database (company.db). Before executing any CRUD operation, it authenticates the user via the Google OAuth 2.0 Authorization Code flow. The server opens a browser window, completes authentication, and stores the user's email in-memory for the duration of the session.
Related MCP server: SQLite MCP Server
Folder Structure
.
├── server.py # Main entry point, sets up FastMCP and registers tools
├── auth.py # Google OAuth 2.0 logic and local callback server
├── database.py # SQLAlchemy setup, session management, and sample data injection
├── models.py # SQLAlchemy model definitions
├── tools.py # CRUD operations exposed as MCP tools
├── config.py # Loads environment variables
├── .env # Environment variables (Credentials)
├── requirements.txt # Python dependencies
└── README.md # This documentationInstalling Dependencies
Make sure you have Python 3.12+ installed, then run:
pip install -r requirements.txtSetting up Google OAuth Credentials
Go to the Google Cloud Console.
Create a new project or select an existing one.
Navigate to APIs & Services > Credentials.
Click Create Credentials > OAuth client ID.
Select Web application as the application type.
Under Authorized redirect URIs, add exactly what is in your
.envfile (e.g.,http://localhost:8080/callback).Click Create and copy your Client ID and Client Secret.
Configuring .env
Edit the .env file and replace the placeholder values with your actual Google OAuth credentials:
GOOGLE_CLIENT_ID=your-client-id-here
GOOGLE_CLIENT_SECRET=your-client-secret-here
REDIRECT_URI=http://localhost:8080/callbackNote: You can change the port in REDIRECT_URI if port 8080 is already in use. The auth.py script automatically parses this URL to determine which port to listen on.
Running the MCP Server
You can run the server in development mode using the FastMCP CLI or via an MCP inspector:
fastmcp dev server.pyAlternatively, configure your AI Assistant (like Claude Desktop) to run the server script directly via stdio.
Authenticating with Google
When the AI Assistant attempts to call an MCP tool for the first time:
The server will detect that you are not authenticated.
It will automatically open your default web browser to the Google Sign-In page.
Once you sign in and grant permission, Google will redirect you to
http://localhost:8080/callback.A local HTTP server intercepts the authorization code, exchanges it for an access token, and fetches your email.
The browser will display an "Authentication successful!" message, and the original tool call will proceed.
The authentication state is kept in memory for the lifecycle of the Python process.
Example MCP Tool Calls
Once authenticated, your AI Assistant can use the following tools:
get_all_employees(): Returns a list of all employees.get_employee_by_id(employee_id=1): Returns the details of a specific employee.add_employee(name="Jane Doe", email="jane@example.com", department="IT", salary=100000): Inserts a new employee.update_employee(employee_id=1, salary=130000): Updates specific fields for an employee.delete_employee(employee_id=3): Deletes an employee from the database.
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.
Latest Blog Posts
- 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/donlw/MCP-Server-With-OAuth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server