Damper MCP referenca
Damper izlaže 100+ alata preko hostanog MCP poslužitelja sa streamable HTTP transportom — bez lokalne instalacije. Agenti ih koriste za rad na zadacima, razrješavanje konteksta, čitanje stranica i baza, djelovanje na povratne informacije i objavljivanje izdanja.
Postavljanje
Dodajte Damper MCP poslužitelj svom AI pomoćniku. Koristi streamable HTTP transport — ništa za lokalnu instalaciju.
Claude Code
Dodajte u .mcp.json projekta ili globalni ~/.claude.json:
// .mcp.json or ~/.claude.json { "mcpServers": { "damper": { "type": "http", "url": "https://api.usedamper.com/mcp", "headers": { "Authorization": "Bearer dmp_..." } } } }
Cursor
Dodajte u .cursor/mcp.json u korijenu projekta:
// .cursor/mcp.json { "mcpServers": { "damper": { "type": "http", "url": "https://api.usedamper.com/mcp", "headers": { "Authorization": "Bearer dmp_..." } } } }
Autentikacija
Svi zahtjevi autentificiraju se vašim API ključem u zaglavlju Authorization. Ključ pronađite u nadzornoj ploči pod Postavke → API ključevi — ključevi koriste prefiks dmp_.
Authorization: Bearer dmp_your_key_here
Preporučeni tijek rada
- Pripremite posao
get_agent_instructionspostavlja vaš CLAUDE.md;prepare_workgradi kompaktan paket posla s kontekstom koji upravlja i usporedbom grafa. - Učitaj kontekst
get_project_contextiliresolve_context— arhitektura, pravila i sekcije koje upravljaju datotekama koje ćete dirati. - Birajte i zaključajte zadatak
list_taskssortira po težinskoj potražnji;start_taskzaključava i vraća specifikaciju, povezane povratne informacije i indeks popisa. - Pratite u hodu
add_noteza odluke,add_commitza hasheve ilink_prtrenutku kad pull postoji. - Završite s dokazima
get_completion_checklist, zatimcomplete_tasks potvrdom za svaku stavku. Iliabandon_tasks sažetkom predaje. - Pustite petlju da se zatvori sama
Završeni javni zadaci automatski sastavljaju unos changeloga;
publish_changelogobaviještava pretplatnike i glasače.
Structured output schemas include task lifecycle messages, execution dates, summaries, review instructions, project details and feedback submitters; dependency project IDs and creation dates; and changelog dates and linked items. start_task and get_project_context share a context index schema with tags, appliesTo and exposed-page titles. Context sections include version and verification metadata; generated routing sections declare a string version, generated/readOnly flags and routeCount. Database reads include relationLabels, and row-value updates return updatedAt for conflict-safe edits.
Zadaci
include sections like timeline or set detailMode: "full" for the legacy payload.kind.currentProgress snapshot shown in compact retrieval.Kontekst i graf
Stranice i baze
Cijeli Pages radni prostor — s ograničenim čitanjima, nastavljivim provjerama i sigurnim ponovljivim upisima za rastuće baze.
updatedAt ascending sort, save the returned resume cursor for incremental polls; in matches any supplied array member and contains requires all.Database read tools include full JSON in text and structured output. get_page also includes row propertyValues keyed by property ID; query_page_database preserves the requested property/content projection.
Date values use YYYY-MM-DD strings, for example 2026-09-13; use null to clear them. Timestamp strings are reduced to their first ten characters without timezone conversion. For overdue rows, filter with { propertyId: reviewDateId, operator: "less_than", value: "2026-09-13" } and sort with { propertyId: reviewDateId, direction: "asc" }.
Sort by exactly one metadata field (createdAt or updatedAt) or a custom date propertyId. Empty dates sort last in both directions; row IDs break ties. Reuse cursors with the same sort. Only updatedAt ascending (the default) supports incremental change polling; cursors for other sorts are for pagination only.
Povratne informacije
Izdanja
Status page maintenance
All tools require projectId and follow API-key project access. Creation and timeline posts default to public; posts also default to notifying subscribers. Use isPublic: false for private work and notifySubscribers: false to suppress timeline notifications. Public window creation, edits and opted-in timeline posts queue durable subscriber notifications with background retries. A successful save confirms that the change and notification queue are committed, not that email has been delivered. Private windows still suppress monitoring alerts, and private updates cannot change the state of public maintenance.
{
"name": "create_status_maintenance",
"arguments": {
"projectId": "YOUR_PROJECT_ID",
"title": "Database upgrade",
"scheduledStartAt": "2030-01-01T10:00:00Z",
"scheduledEndAt": "2030-01-01T11:00:00Z",
"isPublic": false
}
}Predlošci i moduli
Projekti i tijek rada
list_projects vraća ID-jeve, nazive i URL-oznake dostupnih projekata, vremenske oznake createdAt u ISO formatu te broj zadataka i povratnih informacija. Indeks get_project_context za stranice dostupne agentima uključuje i neobavezno polje title. Oba alata definiraju te metapodatke u shemama strukturiranih izlaznih podataka.
Usmjerite svog agenta na to.
Jedan URL, jedan ključ, sto alata. Vaša roadmapa je već backlog.