Amp
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"edgeandnode-amp-mcp": {
"command": "npx",
"args": [
"-y",
"@edgeandnode/amp-mcp"
]
}
}
}You can access Amp-specific developer documentation, schemas, and code examples through this MCP server. It centralizes guides, schemas, and troubleshooting to help you build applications on Amp, a high-performance ETL system for blockchain data.
How to use
Integrate Amp MCP into your MCP client to access Amp’s documentation, data schemas, and example applications. You can start the MCP server in two ways: use the remote MCP via npx, or run a locally installed copy with Node. Once connected, you can fetch sections like core docs, schemas, UDFs, and deployment guides to accelerate your development.
How to install
Prerequisites you need before installing are a supported Node.js runtime and a package manager.
# Using npm to install Amp MCP locally
npm install @edgeandnode/amp-mcp
# Or using pnpm
pnpm add @edgeandnode/amp-mcp
Additional sections
Configure your MCP client to recognize Amp as a server. You have two startup options shown here. Choose the one that matches how you manage dependencies in your project.
{
"mcpServers": {
"amp": {
"command": "npx",
"args": ["-y", "@edgeandnode/amp-mcp"]
}
}
}
{
"mcpServers": {
"amp_local": {
"command": "node",
"args": ["/path/to/amp-mcp/dist/index.js"]
}
}
}
Available tools
amp-documentation
Fetches and concatenates Amp documentation for specified sections.
amp-all-documentation
Fetches all Amp documentation at once.
amp-doc-links
Returns resource links for specified sections.
admin-api-error-lookup
Lookup detailed information about a specific Admin API error code.
admin-api-errors-by-endpoint
Get all possible error codes for a specific Admin API endpoint.
admin-api-all-errors
Get a complete reference of all Admin API error codes.
amp-repo-documentation
Fetches operational documentation from the Amp repository.
amp-repo-all-documentation
Fetches all operational documentation from the Amp repository.