nomai-mcp
OfficialClick 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., "@nomai-mcpping the server"
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.
nomai-mcp
Nomai's company MCP server, exposed over remote HTTP and protected with OAuth 2.1.
This server acts as an OAuth Resource Server only: it does not issue tokens or store credentials. It delegates login to Google (Sign in with Google) and validates each request's access token via Google's tokeninfo endpoint, then checks the caller's email against an allowlist.
Setup
Create a project (or use an existing one).
Go to APIs & Services > OAuth consent screen and configure it (External user type is fine; you don't need to publish/verify it for a small internal user list — just add your teammates as test users).
Go to APIs & Services > Credentials > Create Credentials > OAuth client ID. Choose the application type your MCP client expects (e.g. "Web application") and add its redirect URI.
Copy the generated Client ID.
Copy
.env.exampleto.envand fill in:NOMAI_MCP_GOOGLE_CLIENT_ID— the Client ID from step 1.NOMAI_MCP_ALLOWED_EMAILS— the exact emails allowed to use the server.NOMAI_MCP_RESOURCE_SERVER_URL— this server's own public URL.
Install dependencies and run:
uv sync uv run nomai-mcpThe server listens on
NOMAI_MCP_HOST:NOMAI_MCP_PORT(default0.0.0.0:8000) using the streamable-HTTP MCP transport at/mcp.
Adding tools
Add @mcp.tool()-decorated functions in src/nomai_mcp/server.py. A ping
tool is included as a health check — call it once your client has a valid
token to confirm auth is wired up correctly.
things_to_do_in_london_this_weekend and things_to_do_in_london_this_week
scrape londonist.com/things-to-do, follow the current "Things To Do In
London This Weekend" / "This Week" article link, and return its events
grouped by section.
Connecting a client
When adding this as a custom connector, use the full MCP endpoint URL,
including the path — e.g. https://mcp.nomaitech.com/mcp — not just the
bare domain. The OAuth discovery/login endpoints live at the domain root,
but the actual MCP protocol (streamable-HTTP transport) is only served at
/mcp; pointing a client at the bare domain will authenticate successfully
and then fail to find any server, since / itself returns 404.
Google doesn't support OAuth Dynamic Client Registration, so MCP clients (Claude Code, Claude.ai, etc.) will need the Client ID from setup step 1 configured manually rather than discovering it automatically — this is an expected, spec-supported fallback, not a bug. The client then takes the user through Google's normal login + consent screen and sends the resulting access token as the bearer token on each request.
Only accounts listed in NOMAI_MCP_ALLOWED_EMAILS will be accepted — anyone
else who signs in with Google will authenticate successfully but be
rejected by this server with an invalid-token error.
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
- 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/nomaitech/nomai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server