Skip to main content
Glama
deepakji1394

expert-answer-mcp

by deepakji1394

expert-answer-mcp

An MCP server exposing one tool, get_expert_verified_answer — ask it "what is LangChain?" or "what is Mosaic?" and it answers as an expert verifier, backed by Gemini.

Live demo: add the Render URL here once deployed (see docs/CONVENTIONS.md §8.2 — the free-tier service will be asleep on first click; give it ~50s to wake up). Screenshot/GIF: add one of the web page or an MCP client call here before treating this README as finished — a reviewer should see the thing work before reading further.

Why it's interesting

  • One tool, three clients. The same tool is reachable from Claude Desktop (MCP stdio), any MCP SDK client (streamable HTTP — see clients/mcp_client_demo.py), and a plain browser form. Proving client-agnosticism, not building a tool catalogue, is the point.

  • Honest scope trade-offs. No Postgres, no audit log, no rate limiting, no circuit breaker — see docs/adr/0001-minimal-scope.md for why, stated as a decision rather than left to look like an omission.

  • Deterministic, quota-safe repeats. A content-addressed in-memory cache means asking the same question twice doesn't call Gemini twice (docs/adr/0003-in-memory-cache.md).

Related MCP server: Gemini Google Web Search MCP

Architecture

See docs/ARCHITECTURE.md for the diagram, ADR index, and constraint table.

Quickstart

git clone <this-repo>
cd expert-answer-mcp
cp .env.example .env   # fill in a real GEMINI_API_KEY
docker compose up

Then open http://127.0.0.1:8000/ to ask a question in the browser.

Connecting Claude Desktop

Copy clients/claude_desktop_config.json into Claude Desktop's MCP config, fixing the command/cwd absolute paths and GEMINI_API_KEY for your machine.

Running the standalone MCP client demo

.venv/bin/uvicorn app.main:app --port 8000 &
.venv/bin/python clients/mcp_client_demo.py

Note: the server's client-facing MCP endpoint is /mcp/mcp, not /mcpapp/main.py mounts the MCP sub-app at the /mcp prefix, and that sub-app has its own default /mcp route (this is intentional, per the mcp SDK's mounting behavior; see docs/ARCHITECTURE.md). If you connect your own MCP client to plain /mcp you'll get a 404 — use /mcp/mcp.

Testing

.venv/bin/pytest

Unit tests cover the domain logic with no I/O; integration tests cover the MCP tool registration, the web routes, and a real MCP client talking to a real running server — no test calls the live Gemini API (see docs/CONVENTIONS.md).

Limitations

  • Cache is in-memory only — cleared on restart (a deliberate trade-off, not a bug).

  • "Expert-verified" is a prompt-framing decision (one Gemini call), not a second verification pass.

  • No rate limiting or multi-tenancy — this is a single-key portfolio demo.

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    B
    quality
    D
    maintenance
    An MCP server that enables AI models to perform Google Web searches using the Gemini API, complete with citations and grounding metadata for accurate information retrieval. It is compatible with Claude Desktop and other MCP clients for real-time web access.
    Last updated
    1
    3
    Apache 2.0
  • F
    license
    -
    quality
    D
    maintenance
    Provides real-time web research and URL summarization capabilities using Gemini 2.5 Flash with native Google Search grounding. It enables users to perform factual searches and summarize web content directly within MCP-compatible clients like Claude Desktop.
    Last updated
    17
  • A
    license
    -
    quality
    D
    maintenance
    Enables Claude Desktop to search custom knowledge bases using retrieval-augmented generation via a simple MCP tool.
    Last updated
    MIT

View all related MCP servers

Related MCP Connectors

  • Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.

  • Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.

  • Query any docs site via MCP. Submit a URL, ask questions, get cited answers.

View all MCP Connectors

Latest Blog Posts

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/deepakji1394/expert-answer-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server