MCP Catalogs
Home

everything vs jgrants-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
jgrants-mcp
by tachibanayu24
Stars★ 85,748★ 3
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsgovernmentProductivity
LanguageTypeScriptJavaScript
Last committhis month7 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

jgrants-mcp · Summary

An MCP server that provides access to Japanese subsidy information through the jGrants API.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

jgrants-mcp · Use cases

  • Searching for available Japanese subsidies based on specific keywords or industries
  • Retrieving detailed information about specific subsidy programs including eligibility criteria and funding limits
  • Downloading official application documents and guidelines for subsidy applications

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

jgrants-mcp · Install

Installation

Via npm (Global)
npm install -g jgrants-mcp
Via npx
npx jgrants-mcp
Local Development
git clone https://github.com/tachibanayu24/jgrants-mcp.git
cd jgrants-mcp
npm install
npm run build

Claude Desktop Configuration

Add to your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "jgrants": {
      "command": "npx",
      "args": ["jgrants-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.