{"name":"com.oliverkiss/agentic-endpoints","slug":"oliverkiss-agentic-endpoints","title":"Agentic Endpoints","description":"Pay-per-call tools for autonomous agents, settled in USDC on Base via x402.","url":"https://mcp.market/server/oliverkiss-agentic-endpoints","rating":null,"grade":"B","score":80,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":23,"stars":0,"forks":0,"downloads_week":null,"last_push_at":"2026-09-17T20:26:54.000Z","license":"MIT"},"uptime":{"percent":100,"checks":7,"ok":7,"last_checked_at":"2026-09-21T02:25:44.544Z","last_ok_at":"2026-09-21T02:25:44.544Z","latency_ms":85},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/olie-kiss/agentic-endpoints","website":"https://ai.oliverkiss.com","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://ai.oliverkiss.com/mcp"}],"packages":[],"tools":[{"name":"compress","description":"Reduce text to fit a token budget, preserving whole sentences and reporting before/after token estimates. Costs $0.005 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"text":{"type":"string","description":"Text to compress"},"target_tokens":{"type":"integer","description":"Approximate token budget"},"strategy":{"type":"string","enum":["extractive","truncate"],"description":"Compression strategy (default extractive)"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["text"],"additionalProperties":false}},{"name":"credits_balance","description":"Free. Reports the remaining balance on a credit token so you can tell 'out of credit' apart from 'the call failed', which otherwise look identical from the outside. This tool is free; no payment is required.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"credit_token":{"type":"string","description":"The credit token to check"}},"required":["credit_token"],"additionalProperties":false}},{"name":"credits_trial","description":"Free, and the first tool to call if any other tool has told you payment is required. Returns a credit_token carrying $0.10 of credit — roughly twenty calls — with no wallet, no signature, no account and no email. Pass the returned token as the `credit_token` argument to any paid tool and it will run without an x402 payment. One allowance per caller: asking again returns the same token and whatever balance is left on it, never a refill. When it runs out, buy more with the /credits/buy endpoint. This tool is free; no payment is required.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"additionalProperties":false}},{"name":"meetings_get","description":"Fetch a single meeting by meeting_id, including its full transcript when it was imported as queryable. Use this after meetings_search has identified the meeting you want. A 'content_missing' status means the record exists but its stored text could not be found -- that is a broken record, not an empty meeting, so do not report it as one. Costs $0.002 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope holding your meetings"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"meeting_id":{"type":"string","description":"Returned by meetings_import or meetings_search"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","namespace_token","meeting_id"],"additionalProperties":false}},{"name":"meetings_import","description":"Store a transcript so it can be searched later. Accepts a raw WebVTT or SRT export straight from Zoom, Teams, Meet or a notetaker -- you do NOT need to strip timestamps or parse it first, and cues split across timing boundaries are merged so phrases still match. `visibility` is a required decision and cannot be guessed for you: 'queryable' stores plaintext, indexes it, and means this service can read it; 'private' stores ciphertext you encrypted yourself, which is unreadable here and therefore NEVER searchable. Send `transcript` for queryable and `ciphertext` for private -- the mismatched combinations are refused rather than silently doing the wrong thing. The first import into a namespace returns a namespace_token shown exactly once; save it or the namespace is unrecoverable. Costs $0.004 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope, e.g. my-meetings-<uuid>"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"title":{"type":"string","description":"Human-readable meeting title"},"occurred_at":{"type":"string","description":"ISO-8601 time the meeting happened"},"source":{"type":"string","description":"Optional hint about the export format. Ignored if it disagrees with the file: WebVTT and SRT are detected from the content itself, unpacked into speaker-attributed text, and any speakers found are added to participants. Plain text is stored verbatim."},"visibility":{"type":"string","description":"'queryable' (plaintext, searchable, readable by this service) or 'private' (ciphertext, never searchable). Defaults to private."},"transcript":{"type":"string","description":"Plaintext transcript. Only valid with visibility 'queryable'."},"ciphertext":{"type":"string","description":"Client-side encrypted transcript. Only valid with visibility 'private'."},"participants":{"type":"array","items":{"type":"string"},"description":"Optional attendees"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace"],"additionalProperties":false}},{"name":"meetings_list","description":"List the meetings in a namespace newest first, with titles, dates, participants and whether each one is searchable. Never returns transcripts. Useful for orienting before a search, and for finding meetings that are private and therefore invisible to meetings_search. Costs $0.001 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope holding your meetings"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"limit":{"type":"integer","description":"Max results, 1-500 (default 100)"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","namespace_token"],"additionalProperties":false}},{"name":"meetings_search","description":"Ask a question across every meeting you have imported as queryable, and get back ranked excerpts with the meeting they came from. This is the tool to use when the user refers to something that was said, agreed, or decided in a call -- 'what did we decide about pricing', 'who owned the migration', 'when did we say we would ship'. Returns 'searched_meetings' and 'private_meetings_skipped': meetings imported as private are encrypted and CANNOT be searched, so if searched_meetings is 0 an empty result means nothing was searched, NOT that the topic was never discussed. Use meetings_get to read a full transcript once you have found the right meeting. Costs $0.006 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope holding your meetings"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"query":{"type":"string","description":"FTS5 match expression. Use quotes for phrases, e.g. \"budget review\". Prefer a few distinctive words over a whole sentence."},"limit":{"type":"integer","description":"Max results, 1-50 (default 10)"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","namespace_token","query"],"additionalProperties":false}},{"name":"meetings_summarize","description":"Ask a plain-language question and get a written answer grounded in the user's own meeting transcripts, with the meeting id cited after each claim. Prefer this over meetings_search when the user wants an ANSWER ('what did we decide about pricing?', 'who owned the migration?') rather than a list of excerpts to read themselves. Pass the question as the user asked it -- this is NOT FTS5 syntax, and the terms actually searched come back as `terms` so you can check the retrieval. IMPORTANT: a 'no_matches' status means no answer was generated, and 'searched_meetings': 0 means every meeting is private and NOTHING was read -- neither is evidence the topic was never discussed, and you must not report it as such. Meetings imported as private are encrypted and can never contribute to an answer; `private_meetings_skipped` says how many were left out. A 'truncated' meeting in `consulted` had only part of its transcript read, so its silence on a point is not evidence either. Costs $0.030 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope holding your meetings"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"question":{"type":"string","description":"The question in plain language, as the user asked it. Not a search expression."},"limit":{"type":"integer","description":"Max meetings to consult, 1-8 (default 5)"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","namespace_token","question"],"additionalProperties":false}},{"name":"once_key_claim","description":"Atomic idempotency witness. Claims a {namespace, action_key} pair exactly once, so a fleet of agents cannot perform the same side effect twice. Call this BEFORE any non-idempotent action such as sending an email, charging a card, or posting an order. Returns one of: 'claimed' — you won, do the work, then call once_key_complete; 'in_progress' — another agent holds a live lease, wait retry_after seconds and do NOT do the work; 'duplicate' — already done, and the 'result' field carries the original outcome, so use it instead of repeating the work; 'held' — another agent claimed this key, set no lease, and has NOT completed it: there is no result and there may never be one, so do NOT do the work and do NOT treat it as done, because the key stays locked until expires_at; 'conflict' — the same key was claimed with a different payload hash, so your key derivation is wrong. Backed by a strongly consistent Durable Object; this is not something an agent can safely reimplement locally. Costs $0.001 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope, e.g. your application name"},"action_key":{"type":"string","description":"Stable identifier for the action being claimed"},"payload_sha256":{"type":"string","description":"Optional hash of the action payload. If it differs from the stored hash, the result is a conflict."},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"ttl":{"type":"integer","description":"Claim lifetime in seconds (default 86400)"},"lease_ttl":{"type":"integer","description":"Seconds you have to call once_key_complete before the claim is treated as abandoned and another agent may take it over. Set this if your work could crash partway. Omit it to hold the claim for the full ttl, which guarantees nothing else can ever run the side effect."},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","action_key"],"additionalProperties":false}},{"name":"once_key_complete","description":"Free. Records the result of work you performed under a claim from once_key_claim. Every later claim of that action_key returns 'duplicate' along with this result, which is what lets another agent continue without repeating the side effect. Always call this after the work succeeds — a claim with no recorded result leaves every other agent unable to learn what happened. Completion is final and cannot be overwritten. This tool is free; no payment is required.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope used when the key was claimed"},"action_key":{"type":"string","description":"The action_key you claimed"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"result":{"description":"Any JSON value describing the outcome, up to 16 KB serialized. Store large payloads elsewhere and record a reference."},"ttl":{"type":"integer","description":"How long to retain the result, in seconds (default 86400)"}},"required":["namespace","action_key"],"additionalProperties":false}},{"name":"once_key_release","description":"Free. Surrenders a claimed action_key so a retry can start immediately instead of waiting out the lease. Call this when the work you claimed fails. Refuses if the key was already completed, because releasing it would discard the recorded result and allow the side effect to run twice. This tool is free; no payment is required.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope used when the key was claimed"},"action_key":{"type":"string","description":"The action_key to release"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."}},"required":["namespace","action_key"],"additionalProperties":false}},{"name":"pdf_parse","description":"Extract text from a PDF by URL. Handles compressed streams, PDF 1.5+ object streams and ToUnicode CMaps, and reports encrypted or image-only documents honestly instead of returning garbage. Costs $0.01 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","description":"HTTPS URL of the PDF"},"max_pages":{"type":"integer","description":"Optional page cap"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["url"],"additionalProperties":false}},{"name":"scrape","description":"Fetch a URL and return readable text or markdown, optionally narrowed by CSS selector. Requests to private, loopback and link-local addresses are refused, and every redirect hop is re-validated. Costs $0.005 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","description":"HTTPS URL to fetch"},"format":{"type":"string","enum":["text","markdown","html"],"description":"Output format (default text)"},"selector":{"type":"string","description":"Optional CSS selector to extract just part of the page"},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["url"],"additionalProperties":false}},{"name":"vault_delete","description":"Permanently delete an item. Requires the namespace_token. Costs $0.005 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope"},"key":{"type":"string","description":"Item key"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","key","namespace_token"],"additionalProperties":false}},{"name":"vault_exists","description":"Check for a key without returning its ciphertext. Requires the namespace_token. Costs $0.001 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope"},"key":{"type":"string","description":"Item key"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","key","namespace_token"],"additionalProperties":false}},{"name":"vault_list","description":"List the keys held in a namespace with their metadata: alg, size, timestamps. Never returns ciphertext — use vault_retrieve for that. Each item's updated_at is the version to pass back as if_match on a conditional store. Use this when you have stored secrets and need to know what is there. Costs $0.001 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","namespace_token"],"additionalProperties":false}},{"name":"vault_retrieve","description":"Retrieve a previously stored ciphertext. Requires the namespace_token. Costs $0.02 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope"},"key":{"type":"string","description":"Item key"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","key","namespace_token"],"additionalProperties":false}},{"name":"vault_rotate_token","description":"Free. Mints a new namespace_token and immediately invalidates the current one, which you must present to authorize the rotation. Do this whenever the token may have been exposed — a leaked token is otherwise permanent, unrevocable read and delete access to every secret in the namespace. There is no recovery if you lose the token. This tool is free; no payment is required.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."}},"required":["namespace","namespace_token"],"additionalProperties":false}},{"name":"vault_store","description":"Store client-side encrypted data. This service holds no key that could decrypt it and never sees plaintext; note that the item key, namespace, alg label and size ARE stored in the clear. The first store claims the namespace and returns a namespace_token shown only once — store it immediately, because it is required by every later call and cannot be recovered. Pass if_match with an item's updated_at for a compare-and-swap write, or if_absent to create only; either returns status 'precondition_failed' rather than silently clobbering a concurrent write. Costs $0.02 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"namespace":{"type":"string","description":"Isolation scope"},"key":{"type":"string","description":"Item key"},"ciphertext":{"type":"string","description":"Encrypt before sending. Plaintext here would be a mistake."},"alg":{"type":"string","description":"Algorithm label recorded alongside the item (default aes-256-gcm)"},"ttl":{"type":"integer","description":"Item lifetime in seconds"},"namespace_token":{"type":"string","description":"One-time token issued by the first call that claimed this namespace. Required for every later call."},"if_match":{"type":"string","description":"Only write if the item's current updated_at equals this. Use it whenever you are updating a value you read earlier, or a concurrent writer's change is lost silently."},"if_absent":{"type":"boolean","description":"Only write if the key does not already exist. Fails with status 'precondition_failed' if it does."},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["namespace","key","ciphertext"],"additionalProperties":false}},{"name":"x402_verify","description":"Call this BEFORE authorising payment to any x402 endpoint you did not write yourself. It fetches the endpoint's live payment challenge and compares it against every observation previously made by every other caller, so you learn things a single agent cannot see on its own -- above all, whether the address receiving the money has changed. A 'critical' entry in `drift` means something determining where funds go (pay_to, network or asset) is different from before: stop and confirm out of band. Read the LIVE `charges` in preference to any directory listing, and pass what the listing claimed as `expect` to have the disagreement reported. IMPORTANT: 'status':'ok' is NOT an endorsement -- it only means a challenge was read and recorded. It cannot tell you whether the operator will deliver anything for your money. 'first_observation':true means there is no history at all, so an empty `drift` proves nothing. ALWAYS read `prior_criticals`: `drift` only compares against the last observation, so an endpoint that swapped its payee earlier shows an empty `drift` once that swap became the baseline -- a non-zero `prior_criticals` means it has changed where money goes before, and that is true no matter how clean today's look is. 'status':'unreachable' is not evidence of fraud and not evidence of health; do not pay on it either way. A null `price_usd` means the token's units are unknown here and the amount was NOT converted -- do not assume it is small. Costs $0.003 in USDC on Base, paid via the x402 protocol, or from a credit token — call credits_trial for free credit if you have neither.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","description":"Public HTTPS URL of the endpoint you are about to pay. Loopback and private-network addresses are refused rather than fetched."},"method":{"type":"string","description":"How to provoke the challenge: 'POST' (default), 'GET' or 'HEAD'. Use the method you intend to pay for."},"expect":{"type":"object","description":"Optional. What a directory, README or earlier response led you to believe. Any disagreement with the live challenge is reported.","properties":{"pay_to":{"type":"string","description":"The address you expected to pay"},"network":{"type":"string","description":"The chain you expected. A name like 'base' and its CAIP-2 form 'eip155:8453' are understood as the same chain, so an endpoint upgrading protocol version is not reported as a mismatch."},"asset":{"type":"string","description":"The token contract address you expected"},"max_price_usd":{"type":"number","description":"Report a mismatch if the live price exceeds this"}},"additionalProperties":false},"credit_token":{"type":"string","description":"Optional. A credit token from credits_trial or /credits/buy. Supplying it pays for this call from that balance, so no x402 payment or wallet is needed."}},"required":["url"],"additionalProperties":false}}],"scan":{"score":80,"grade":"B","scanned_at":"2026-09-20T11:39:48.276Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T11:39:48.214Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 391ms"]},"poisoning":{"score":15,"max":15,"notes":["20 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 3 days ago"]},"identity":{"score":7,"max":10,"notes":["namespace and repository owner differ","GitHub account older than a year","website matches verified namespace"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://ai.oliverkiss.com/mcp","reachable":true,"authRequired":false,"latencyMs":391,"serverInfo":{"name":"agentic-endpoints","version":"1.0.0"}}],"packages":[],"repo":{"found":true,"owner":"olie-kiss","repo":"agentic-endpoints","archived":false,"pushedAt":"2026-09-17T20:26:54Z","stars":0,"forks":0,"openIssues":1,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/161782877?v=4","ownerCreatedAt":"2024-03-01T00:25:03Z","license":"MIT"},"icon":{"url":"https://avatars.githubusercontent.com/u/161782877?v=4&s=128","source":"github"},"presence":{"stars":0,"forks":0,"downloadsWeek":null,"license":"MIT","lastPushAt":"2026-09-17T20:26:54.000Z","score":23}}}},"grade_history":[],"reviews":[]}