0.0.1 • Published 6 months ago

@elasticpath/ep-dev-mcp v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Elastic Path dev agent MCP bridge

This repository acts as a stdio bridge to facilitate communication between LLM agents and MCP (Model Context Protocol) servers.

This bridge supports both authenticating with Bearer Tokens.

Configuration

To set up the MCP servers locally, use the following configuration file. Below, you will find an example of authentication using a Bearer Token.

  1. Bearer Token Authentication: Supply your authentication token in the BEARER_TOKEN field of the bearer-auth configuration.

Copy and customize the JSON configuration below to match your setup. Replace placeholder value your_auth_token with your actual credentials and https://mcp-dev-server-url with the actual hosted url.

{
  "mcpServers": {
    "ep-dev-mcp": {
      "command": "npx",
      "args": ["-y", "@elasticpath/ep-dev-mcp@latest"],
      "env": {
        "MCP_SERVER": "https://mcp-dev-server-url",
        "BEARER_TOKEN": "your_auth_token"
      }
    }
  }
}
0.0.1

6 months ago