Skip to main content
ClaudeWave
mooshee avatar
mooshee

govgazette-mcp

View on GitHub

Public discovery metadata for the hosted GovGazette MCP server

MCP ServersOfficial Registry0 stars0 forksUpdated today
ClaudeWave Trust Score
65/100
· OK
Passed
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/24/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/mooshee/govgazette-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "govgazette-mcp": {
      "command": "node",
      "args": ["/path/to/govgazette-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/mooshee/govgazette-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

# GovGazette: federal contract research with sources

<!-- mcp-name: io.github.mooshee/govgazette -->

Find federal opportunities, research awards and vendors, and review exclusion evidence in your AI assistant. Public research is free and needs no GovGazette account or API key.

[Watch a short ChatGPT demo](media/chatgpt-demo.mp4) showing source-backed opportunity research.

## Set up your agent

Choose your agent below. For clients that ask for a server address, use **https://govgazette.com/mcp** with **Streamable HTTP** and **no authentication**.

When editing a configuration file, merge the GovGazette entry with your existing settings. Reload the client and enable its tools for your conversation.

<details>
<summary><strong>Claude Code</strong></summary>

Install the plugin:

```sh
claude plugin marketplace add mooshee/govgazette-mcp
claude plugin install govgazette@govgazette
```

It includes contract research and exclusion review skills. Start a new session after installation.

To connect just the MCP tools:

```sh
claude mcp add --transport http govgazette https://govgazette.com/mcp
```

[Provider setup guide](https://code.claude.com/docs/en/mcp)

</details>

<details>
<summary><strong>Codex</strong></summary>

Run:

```sh
codex mcp add govgazette --url https://govgazette.com/mcp
```

Or add this to `~/.codex/config.toml`:

```toml
[mcp_servers.govgazette]
url = "https://govgazette.com/mcp"
```

[Provider setup guide](https://developers.openai.com/learn/docs-mcp)

</details>

<details>
<summary><strong>ChatGPT</strong></summary>

For a custom MCP connection, use ChatGPT developer mode:

1. Enable developer mode in **Settings → Security and login**, if available in your workspace.
2. Open **ChatGPT Plugins**, select the **+** button, and create a plugin named **GovGazette** with MCP server URL `https://govgazette.com/mcp` and no authentication.
3. Enable GovGazette in a conversation and try the example below.

Developer-mode access depends on your plan and workspace settings.

[Provider setup guide](https://developers.openai.com/plugins/deploy/connect-chatgpt)

</details>

<details>
<summary><strong>Claude / Cowork / Desktop</strong></summary>

Open **Customize → Connectors**, select **+ → Add custom connector**, name it named **GovGazette**, and use:

```text
https://govgazette.com/mcp
```

Leave authentication unset for public research, then enable the connector in your conversation. Custom connector access depends on your plan and workspace settings.

[Provider setup guide](https://support.claude.com/en/articles/11175166-get-started-with-custom-connectors-using-remote-mcp)

</details>

<details>
<summary><strong>Gemini CLI</strong></summary>

Install the extension:

```sh
gemini extensions install https://github.com/mooshee/govgazette-mcp
```

It connects GovGazette and includes guidance for research with official sources. Restart Gemini CLI after installation.

Or merge this into your Gemini CLI `settings.json`:

```json
{
  "mcpServers": {
    "govgazette": {
      "httpUrl": "https://govgazette.com/mcp"
    }
  }
}
```

[Provider setup guide](https://geminicli.com/docs/tools/mcp-server/)

</details>

<details>
<summary><strong>Hermes Agent</strong></summary>

Install the portable plugin from this repository's `plugin/` directory:

```sh
hermes plugins install mooshee/govgazette-mcp/plugin --no-enable
hermes plugins enable govgazette
hermes mcp test govgazette
```

Or connect just the MCP tools by merging this into `~/.hermes/config.yaml`:

```yaml
mcp_servers:
  govgazette:
    url: "https://govgazette.com/mcp"
```

Use one method to avoid registering the same server twice. Public research needs no GovGazette key.

[Provider setup guide](https://hermes-agent.nousresearch.com/docs/developer-guide/plugins/)

</details>

<details>
<summary><strong>Cursor</strong></summary>

Merge this into `.cursor/mcp.json`, then enable the server:

```json
{
  "mcpServers": {
    "govgazette": {
      "url": "https://govgazette.com/mcp"
    }
  }
}
```

[Provider setup guide](https://prod.cursor.com/help/customization/mcp)

</details>

<details>
<summary><strong>GitHub Copilot / VS Code</strong></summary>

Merge this into `.vscode/mcp.json`, start the server, and enable its tools in agent mode:

```json
{
  "servers": {
    "govgazette": {
      "type": "http",
      "url": "https://govgazette.com/mcp"
    }
  }
}
```

[Provider setup guide](https://code.visualstudio.com/docs/agent-customization/mcp-servers)

</details>

<details>
<summary><strong>Windsurf / Cascade</strong></summary>

Open the MCP configuration from Cascade and merge this server:

```json
{
  "mcpServers": {
    "govgazette": {
      "serverUrl": "https://govgazette.com/mcp"
    }
  }
}
```

[Provider setup guide](https://docs.devin.ai/desktop/cascade/mcp)

</details>

<details>
<summary><strong>Cline</strong></summary>

Open Cline’s MCP server settings and add this Streamable HTTP connection:

```json
{
  "mcpServers": {
    "govgazette": {
      "type": "streamableHttp",
      "url": "https://govgazette.com/mcp",
      "disabled": false,
      "autoApprove": []
    }
  }
}
```

[Provider setup guide](https://docs.cline.bot/mcp/mcp-overview)

</details>

<details>
<summary><strong>Continue</strong></summary>

Add this entry to the `mcpServers` list in your Continue configuration:

```yaml
mcpServers:
  - name: GovGazette
    type: streamable-http
    url: https://govgazette.com/mcp
```

[Provider setup guide](https://docs.continue.dev/customize/deep-dives/mcp)

</details>

<details>
<summary><strong>OpenCode</strong></summary>

Merge this into `opencode.json`:

```json
{
  "mcp": {
    "govgazette": {
      "type": "remote",
      "url": "https://govgazette.com/mcp",
      "enabled": true
    }
  }
}
```

[Provider setup guide](https://opencode.ai/docs/mcp-servers/)

</details>

<details>
<summary><strong>Kiro</strong></summary>

Merge this into the MCP configuration for your Kiro IDE or CLI:

```json
{
  "mcpServers": {
    "govgazette": {
      "url": "https://govgazette.com/mcp"
    }
  }
}
```

[Provider setup guide](https://kiro.dev/docs/mcp/configuration/)

</details>

<details>
<summary><strong>OpenClaw</strong></summary>

Use an OpenClaw version with the MCP registry feature. Add this to its configuration and follow the provider guide to run a connection probe:

```json
{
  "mcp": {
    "servers": {
      "govgazette": {
        "url": "https://govgazette.com/mcp",
        "transport": "streamable-http"
      }
    }
  }
}
```

[Provider setup guide](https://docs.openclaw.ai/cli/mcp/registry)

</details>

<details>
<summary><strong>Perplexity</strong></summary>

Add a custom remote connector named **GovGazette** with this URL and open authentication:

```text
https://govgazette.com/mcp
```

Enable it for your research. Custom connector access depends on your plan and workspace settings.

[Provider setup guide](https://www.perplexity.ai/en-GB/changelog/what-we-shipped---march-13-2026)

</details>

<details>
<summary><strong>Grok API</strong></summary>

Add this remote MCP tool to your Grok API request. Use the API integration for this setup:

```json
{
  "type": "mcp",
  "server_url": "https://govgazette.com/mcp",
  "server_label": "govgazette",
  "allowed_tools": [
    "search_opportunities",
    "research_opportunity",
    "search",
    "detail",
    "freshness",
    "check_exclusions"
  ]
}
```

[Provider setup guide](https://docs.x.ai/developers/tools/remote-mcp)

</details>

<details>
<summary><strong>LM Studio</strong></summary>

Open **Program → Install → Edit mcp.json** and merge this server. Choose a model that supports tools:

```json
{
  "mcpServers": {
    "govgazette": {
      "url": "https://govgazette.com/mcp"
    }
  }
}
```

[Provider setup guide](https://beta.lmstudio.ai/docs/app/mcp)

</details>

<details>
<summary><strong>Open WebUI / Ollama</strong></summary>

In the administrator settings, add an external tool server:

```text
Name: GovGazette
Type: MCP (Streamable HTTP)
URL: https://govgazette.com/mcp
Authentication: None
```

Enable it for your chat and select a model that supports tools. For Ollama models, configure the connection in Open WebUI.

[Provider setup guide](https://docs.openwebui.com/features/extensibility/mcp/)

</details>

<details>
<summary><strong>Amazon Q Developer</strong></summary>

In the IDE tools panel, add a server named **GovGazette**, choose **HTTP**, enter `https://govgazette.com/mcp`, and save. Review and enable the tools you want to use.

[Provider setup guide](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/mcp-ide.html)

</details>

## Try it

> Find three active software notices in industry 541512. Research one, cite its official source and date, and check whether the response deadline is still open.

You can also ask your agent to research a vendor by its Unique Entity Identifier (UEI), explain an industry code, or review a possible exclusion match.

## Save a search

[Create a private workspace](https://govgazette.com/monitor) to follow changes in an inbox or feed. To manage saved searches through an agent, store your workspace key in the client’s secret-header settings as `Authorization: Bearer YOUR_WORKSPACE_KEY`. Keep it out of prompts and shared configuration files.

## Research with care

Check the official source and its date. An active notice can have a deadline that has passed. Similar awards do not establish an incumbent, and an exclusion search does not determine eligibility. Consult official attachments for complete solicitation requirements. GovGazette is independent of the U.S. government.

[Website](https://govgazette.com) · [API reference](https://govgazette.com/api/v1/openapi.json) · [Agent guide](https://govgazette.com/llms.txt) · [Privacy](https://govgazette.com/privacy) · [Support](https://github.com/mooshee/govgazette-mcp/issues) · [MCP Registry](https://registry.modelcontextprotocol.io/?q=io.github.mooshee%2Fgovgazette)
cursor-plugingemini-cli-extension

What people ask about govgazette-mcp

What is mooshee/govgazette-mcp?

+

mooshee/govgazette-mcp is mcp servers for the Claude AI ecosystem. Public discovery metadata for the hosted GovGazette MCP server It has 0 GitHub stars and its last recorded update is dated 2026-09-24.

How do I install govgazette-mcp?

+

You can install govgazette-mcp by cloning the repository (https://github.com/mooshee/govgazette-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is mooshee/govgazette-mcp safe to use?

+

Our security agent has analyzed mooshee/govgazette-mcp and assigned a Trust Score of 65/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains mooshee/govgazette-mcp?

+

mooshee/govgazette-mcp is maintained by mooshee. The last recorded GitHub activity is dated 2026-09-24, with 0 open issues.

Are there alternatives to govgazette-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy govgazette-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: mooshee/govgazette-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/mooshee-govgazette-mcp)](https://claudewave.com/repo/mooshee-govgazette-mcp)
<a href="https://claudewave.com/repo/mooshee-govgazette-mcp"><img src="https://claudewave.com/api/badge/mooshee-govgazette-mcp" alt="Featured on ClaudeWave: mooshee/govgazette-mcp" width="320" height="64" /></a>

More MCP Servers

govgazette-mcp alternatives