
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@amp-labs/mcp-server
Advanced tools
Connect your agents to the 150+ connectors we offer at Ampersand via this multi-tenant MCP server. We expose the primitives we offer on the Ampersand platform as native tools here.
Add the following in your mcp.json
in cursor IDE or claude_desktop_config.json
when using Claude desktop.
{
"mcpServers": {
"@amp-labs/mcp-server": {
"url": "https://mcp.withampersand.com/v1/sse?apiKey=<AMPERSAND_API_KEY>&project=<AMPERSAND_PROJECT_ID>&integrationName=<AMPERSAND_INTEGRATION_NAME>&groupRef=<AMPERSAND_GROUP_REF>"
}
}
}
{
"mcpServers": {
"@amp-labs/mcp-server": {
"command": "npx",
"args": [
"-y",
"@amp-labs/mcp-server@latest",
"--transport",
"stdio",
"--project",
"<AMPERSAND_PROJECT_ID>",
"--integrationName",
"<AMPERSAND_INTEGRATION_NAME>",
"--groupRef",
"<AMPERSAND_GROUP_REF>"
],
"env": {
"AMPERSAND_API_KEY": "<AMPERSAND_API_KEY>"
}
}
}
}
pnpm i
pnpm build
pnpm start
Use the MCP inspector tool to know more about the mcp server and debug tools, prompts, resources
pnpm inspect
If your MCP client supports headers:
{
"mcpServers": {
"@amp-labs/mcp-server": {
"url": "http://localhost:3001/v1/sse?apiKey=<AMPERSAND_API_KEY>&project=<AMPERSAND_PROJECT_ID>&integrationName=<AMPERSAND_INTEGRATION_NAME>&groupRef=<AMPERSAND_GROUP_REF>",
"headers": {
"x-api-key": "<AMPERSAND_API_KEY>"
}
}
}
}
If your MCP client does not support headers, you can pass the API key in the query param:
{
"mcpServers": {
"@amp-labs/mcp-server": {
"url": "http://localhost:3001/v1/sse?apiKey=<AMPERSAND_API_KEY>&project=<AMPERSAND_PROJECT_ID>&integrationName=<AMPERSAND_INTEGRATION_NAME>&groupRef=<AMPERSAND_GROUP_REF>"
}
}
}
"@amp-labs/mcp-server": {
"command": "node",
"args": [
"<PATH_TO_CODEBASE>/mcp-server/dist/index.js",
"--transport",
"stdio",
"--project",
"<AMPERSAND_PROJECT_ID>",
"--integrationName",
"<AMPERSAND_INTEGRATION_NAME>",
"--groupRef",
"<AMPERSAND_GROUP_REF>"
],
"env": {
"AMPERSAND_API_KEY": "<AMPERSAND_API_KEY>"
}
},
FAQs
MCP server for Ampersand docs
The npm package @amp-labs/mcp-server receives a total of 3 weekly downloads. As such, @amp-labs/mcp-server popularity was classified as not popular.
We found that @amp-labs/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.