Package Search MCP Server

Model Context Protocol server for Spryker Package Search

Local serverstdio

What is the Package Search MCP MCP server?

Model Context Protocol server for Spryker Package Search. The package search mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

A command-line tool that initializes a Model Context Protocol (MCP) server to provide spryker search capabilities for Spryker GitHub repositories.

Its toolset

Everything the assistant can do here goes through one of these:

  • search_spryker_packages — Searches for Spryker packages based on a natural language query
  • search_spryker_package_code — Parameters: - query (string, required): The natural language query to search within code
  • search_spryker_documentation — Parameters: - query (string, required): The natural language query to search Spryker documentation

Adding it to your client

@modelcontextprotocol/inspector on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need 2 environment variables: GITHUB_PERSONAL_ACCESS_TOKEN, FULL_PATH. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Package Search MCP's toolset — search_spryker_packages, search_spryker_package_code, search_spryker_documentation — is a fair guide to whether it matches your workflow. It is maintained by spryker-community; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the package search mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
search_spryker_packagesSearches for Spryker packages based on a natural language query.
search_spryker_package_codeParameters: - query (string, required): The natural language query to search within code.
search_spryker_documentationParameters: - query (string, required): The natural language query to search Spryker documentation.

How to install the Package Search MCP MCP server

{
  "mcpServers": {
      "sprykerPackageSearch": {
          "command": "npx",
          "args": [
              "-y",
              "/FULL_PATH/spryker-module-finder"
          ],
          "env": {
              "GITHUB_PERSONAL_ACCESS_TOKEN":"token"
          }
      }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GITHUB_PERSONAL_ACCESS_TOKENCredential the server authenticates with.Yes
FULL_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Package Search MCP to search spryker packages.
  • Use Package Search MCP to search spryker package code.
  • Use Package Search MCP to search spryker documentation.

Frequently asked questions

It connects Package Search MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (search_spryker_packages, search_spryker_package_code, search_spryker_documentation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Package Search MCP directly.