Skip to main content
Glama
terrorgeek

Navi Candidates MCP

by terrorgeek

Navi Candidates MCP

Remote MCP server for Pickaxe's Scout Navi agent. It exposes a read-only search_candidates tool that calls Navi's existing candidate search Cloud Function and returns safe candidate summaries.

Endpoints

  • GET /health

  • POST /mcp

Related MCP server: @baanish/synthetic-search-mcp

Environment

NAVI_MCP_API_KEY=replace-with-a-long-random-token
CANDIDATE_SEARCH_FUNCTION_URL=https://us-central1-navi-ai-f1306.cloudfunctions.net/searching_candidates
PORT=8080
NODE_ENV=production

Local Development

npm install
npm test
npm run build
NAVI_MCP_API_KEY=dev-secret npm start
curl http://127.0.0.1:8080/health

Deploy To Cloud Run

gcloud auth login
gcloud config set project navi-ai-f1306
gcloud config set run/region us-central1
gcloud services enable run.googleapis.com cloudbuild.googleapis.com artifactregistry.googleapis.com secretmanager.googleapis.com

Create the bearer token secret:

printf "replace-with-a-long-random-token" | gcloud secrets create navi-mcp-api-key --data-file=-

Deploy:

gcloud run deploy navi-candidates-mcp \
  --source . \
  --region us-central1 \
  --allow-unauthenticated \
  --set-env-vars CANDIDATE_SEARCH_FUNCTION_URL=https://us-central1-navi-ai-f1306.cloudfunctions.net/searching_candidates,NODE_ENV=production \
  --update-secrets NAVI_MCP_API_KEY=navi-mcp-api-key:latest

Cloud Run must be public because Pickaxe calls it externally. The MCP endpoint itself is protected by Authorization: Bearer <NAVI_MCP_API_KEY>.

After deployment, configure Pickaxe with:

https://<cloud-run-service-url>/mcp
F
license - not found
-
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
    -
    quality
    D
    maintenance
    MCP server for using various search tools like Tavily API. Planning to support various search tools (i.e. wiki search, searxng, etc)
    3
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Minimal MCP server that provides access to Google's Gemini API with Google Search grounding for up-to-date information through a single ask_gemini tool.

View all related MCP servers

Related MCP Connectors

  • Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.

  • Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).

  • MCP server exposing the Backtest360 engine API as tools for AI agents.

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/terrorgeek/navi-candidates-mcp'

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