
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Universal OpenAPI ➜ MCP relay server with enterprise authentication.
Relay converts any OpenAPI/Swagger specification into AI-callable MCP tools. It acts as a bridge between AI assistants and REST APIs, automatically generating tools from API documentation and executing real HTTP requests.
Main Function: Transform any REST API into MCP tools that AI assistants can use directly.
npm install relay-mcp
npm install
npm run build
.env file):SWAGGER_SOURCE=url
SWAGGER_URL=https://petstore.swagger.io/v2/swagger.json
AUTH_TYPE=none
npm start
{
"mcpServers": {
"relay": {
"command": "node",
"args": ["/path/to/relay/dist/index.js"],
"env": {
"SWAGGER_SOURCE": "url",
"SWAGGER_URL": "https://petstore.swagger.io/v2/swagger.json",
"AUTH_TYPE": "none",
"TRANSPORT": "stdio"
}
}
}
}
Or run as a standalone server with SSE/HTTP:
# For SSE transport
TRANSPORT=sse TRANSPORT_PORT=3000 npm start
# For HTTP transport
TRANSPORT=http TRANSPORT_PORT=3000 npm start
Then configure your MCP client to connect to http://localhost:3000/mcp.
MIT
FAQs
Universal OpenAPI to MCP relay server with enterprise authentication
We found that relay-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.