Back to tracker
Plugin tracker
Tools
Explore what tracked Claude Connectors and ChatGPT Plugins can actually do. Search by tool, Plugin, Brand, category, verb, or access requirement.
Latest snapshot2026-09-13USmethodology registry-public-v1
Searchable tools
119,491
Authless tools
7,773
Auth required
107,252
Described tools
64,388
119,491 tools
- List userslist · List the users (teammates) on the current account.
Use this when the user references a teammate by name and you need their `id` to pass into another tool — `assignee_id` / `nominator_id` on ListTasks, `user_id` on ListProjects, owner / created-by filters on saved grants, etc. All those tools key off a user api_id (`user_...`), not an email or name.
Filters (compose with AND):
- search: case-insensitive substring match across first_name, last_name, and email — the workhorse for resolving "John Williams", "john@", or a partial name to a user
- email: exact-match email lookup — use only when you already have the full email
With no filters, returns every user on the account.InstrumentlInstrumentl
PluginrequiredOperations - Save matchsave · Save a grant match to a project. Defaults to saving to the project
the match belongs to; pass `target_project_id` to save the grant to
a different project in the same account.
Pass `hide: true` to instead hide ("not interested") the match, so it
no longer appears in the project's matches. This is reversible in
the Instrumentl app. `target_project_id` is ignored when hiding.
Each call creates a new SavedGrant. To remove a grant you previously
saved, use the `hide_saved_grant` tool with the SavedGrant id returned
here.InstrumentlInstrumentl
PluginrequiredOperations - Search grantssearch · Search grants by natural-language intent (for example, "youth mental health programs in rural areas").
Ranks grants by semantic similarity to the query and returns the closest matches the account can access,
most relevant first. Use this when the user describes what they are looking for in prose rather than
naming a specific funder or applying an explicit filter.InstrumentlInstrumentl
PluginrequiredOperations - Submit feedbacksubmit · Send a feedback message from the user to the Instrumentl engineering team.
Call this only when one of the following is clearly true:
- The user has explicitly asked to report a bug, request a
feature, or send feedback to the team.
- You have already attempted to help with the user's actual task,
and the user is still blocked or has expressed unresolved
frustration that cannot be solved inside this conversation.
DO NOT call this:
- Proactively, on the first sign of frustration. Try to help first.
- When the user is merely unsure how to do something -- answer the
question instead.
- More than once per conversation, unless the user explicitly asks
to send another message.
Before calling, do both of these with the user (do not guess either):
1. Confirm the wording of the `message` -- the team only sees what
is passed here.
2. Ask which `category` best fits (bug / feature_request /
complaint / other). Do not infer the category yourself unless
the user has clearly stated it.
The submission is delivered asynchronously to a private Slack channel
monitored by engineering and product. There is no follow-up channel
here, so do not promise a reply on a specific timeline.InstrumentlInstrumentl
PluginrequiredOperations - Update saved grantupdate · Update fields on a saved (tracked) grant. Pass the SavedGrant's `id`
(e.g. `save_...`) plus only the fields you want to change - omitted
fields are left untouched.
Updatable fields:
- `status`: where the grant is in the pipeline.
- `notes`: free-form notes about the opportunity.
- `amount_requested` / `amount_awarded`: dollar amounts.
- `year`: fiscal year the grant is tracked under.
- `notified_at`, `award_period_start_date`, `award_period_end_date`:
dates relevant once a grant is awarded.
- `owner_id`: the User (`user_...`) to make responsible for the grant,
or null to clear the owner.
- `project_id`: move the grant to a different project (`proj_...`).
Notes:
- Setting `status` to `researching` clears the requested amount and
submission goals, matching the app's behavior.
- To stop tracking a grant, use `hide_saved_grant` instead.
Use `list_saved_grants` to find the `saved_grant_id`.InstrumentlInstrumentl
PluginrequiredOperations - Upsert tasksupsert · Create new tasks and/or update existing tasks
in a single best-effort call. Each row in `tasks` is either:
- { "op": "create", "saved_grant_id": "save_...", "kind": "...", ...optional fields }
- { "op": "update", "id": "task_...", ...fields to change }
Rows are processed independently — a failed row does not roll back the others.
Use `op: "create"` to add a task to a SavedGrant. `saved_grant_id` and
`kind` are required; the calling user becomes the creator and nominator.
Use `op: "update"` to change an existing task. Only `id` is required;
pass any subset of mutable fields. Pass `done_at` as a timestamp to
mark the task complete, or `null` to reopen it.
Available kinds: full_proposal, report, general, letter_of_inquiry, cultivation.
Resolving a user for `assignee_user_id` or `notify_user_ids`: these
must be `user_...` API IDs. If the user names someone by first name,
last name, or email, call `list_users` to resolve the API ID first.
Do not try to find users via `list_tasks` people filters — those only
surface users who already appear on a task, not every member of the
account.
The response shape is:
{
"results": [
{ "index": 0, "op": "create", "status": "ok", "task": { ... } },
{ "index": 1, "op": "update", "status": "failed", "reason": "not_found" }
],
"created_count": N,
"updated_count": N,
"failed_count": N
}
Each result's `index` matches the input row at the same position.
Possible failure reasons:
- "not_found": task id doesn't exist or belongs to a different account (update)
- "saved_grant_not_found": saved_grant_id doesn't exist or belongs to a different account (create)
- "user_not_found": assignee_user_id or notify_user_ids contains a user not in this account
- "not_authorized": the caller lacks permission for this row
- "invalid": validation failed; see `errors`InstrumentlInstrumentl
PluginrequiredOperations - Get daily tender briefget · Return the signed-in TenderLead account's current matched tender brief. Read-only and customer-scoped.TenderLeadTenderLead
PluginrequiredSales & CRM - Get tender bid or skip decisionget · Return the saved score, bid-or-skip recommendation and reasons for one tender matched to the signed-in TenderLead account. Requires Pro or Team.TenderLeadTenderLead
PluginrequiredSales & CRM - Search matched tenderssearch · Search tenders already matched to the signed-in TenderLead account. Does not search or modify another customer's data.TenderLeadTenderLead
PluginrequiredSales & CRM - Enumerate TrendKia URLs (not a search)list · List URLs from TrendKia's sitemap.xml (handles nested sitemap indexes).
To FIND an article, use search_articles -- it queries the site's full-text index and
reaches the whole archive. This tool is for enumerating what exists, not searching.
Args:
limit: Max URLs to return (1-1000). Default 100.
kind: "articles" (default) lists article pages only; "ledger" lists the
bribe-ledger state and district pages; "all" lists everything in
sitemap order.
offset: Skip this many matching URLs first, to page through the archive.Trendkia NewsTrendKia
PluginnoneContent & Design - Get TrendKia article contentget · Fetch one TrendKia article as clean markdown, or as structured JSON.
The URL decides the language: the site root is Hindi and `/en/...` is the English
edition. Pass a URL and you get that article in that language -- the URL you hand
over is never overridden. Set `lang` only when you want the OTHER edition of the
same article, e.g. pass a Hindi URL with lang="en" to read it in English; the server
rewrites the path for you.
Args:
url: The article URL. A bare path is Hindi, an /en/ path is English. Any
.md/.txt/.json suffix or query string on it is ignored.
lang: Optional "en" or "hi". Omit it to follow the URL. Set it to match the
language the user is writing in when that differs from the URL you have.
fmt: "md" (default) for readable markdown, or "json" for the same article as
structured fields -- title, summary, content, category, publishedAt, tags
as a real list, language, canonical url. Use "json" when you need to read
specific fields rather than prose.Trendkia NewsTrendKia
PluginnoneContent & Design - List recent TrendKia articleslist · List the most recent TrendKia articles (title, URL, category, date, summary).
Covers roughly the last 30 posts (the RSS feed). For anything older use search_articles,
which reaches the whole archive.
Args:
limit: How many articles to return (1-50). Default 10.
lang: Optional "en" or "hi" -- set this to match the language the user is writing
in. The feed is Hindi (the site root); /en is the English edition. Each item
also carries the other edition's URL.Trendkia NewsTrendKia
PluginnoneContent & Design - Search TrendKia (whole archive)search · THE way to find a TrendKia article. Searches the WHOLE archive, Hindi or English.
Use this for any request that names a topic, person, place or event, however old
the story might be -- it queries the site's full-text index and reaches every
published article, not just recent ones. Do not fall back to list_sitemap_urls when
this returns nothing: it has already covered the entire archive, so try the other
language or different terms instead.
The index is bilingual and SHARED, not one index per language: an English query
matches Hindi articles and vice versa. `lang` therefore selects which language the
RESULTS come back in, not which index is consulted.
Args:
query: Keyword or phrase, Hindi or English.
limit: Max results to return (1-50). Default 10.
lang: Optional "en" or "hi" -- set this to match the language the user is writing
in. The site publishes in Hindi at the root with an English edition under
/en, and results default to Hindi. Every result also carries the other
edition's URL, so you never rewrite a URL yourself.Trendkia NewsTrendKia
PluginnoneContent & Design - Company Financialspreqin · Use this when the user wants financial data for one known company. Reuse a known company ID or call preqin_search to obtain it. Returns revenue, growth, operating income, EBITDA, and net income metrics by reporting date. Supports filtering by reporting date range, revenue, EBITDA, and margin thresholds. Returning a previously unseen company consumes the caller's subscription entity quota; repeating a call for an already-seen company does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Company Investorspreqin · Use this when the user wants the investors or owners of one known company. Reuse a known company ID or call preqin_search to obtain it. Supports filtering by investor_status, deal_type, firm_type, initial investment date range, and exit date range. Use preqin_company_investors_filter_values to discover valid filter options. Returns firm_id, firm_name, firm_type, initial_date, deal_type, holding_period_years, investor_status, and exit_date. Returning previously unseen investors consumes the caller's subscription entity quota; repeating a call that returns only previously seen investors does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Company Investors Filter Valuespreqin · Use this when categorical filter values or date ranges are needed before calling preqin_company_investors. Returns distinct values for categorical columns: investor_status, deal_type, firm_type, holding_period_years; and min/max ranges for initial_date and exit_date.PreqinPreqin
PluginrequiredData & Analytics - Contacts Filter Valuespreqin · Use this when valid contact filter values are needed before calling preqin_contacts. Returns distinct values for categorical columns (asset_class, title, country, city).PreqinPreqin
PluginrequiredData & Analytics - Deal Filter Valuespreqin · Use this when valid deal filter values or date ranges are needed before calling preqin_entity_deal_history. Returns distinct values for categorical columns (deal_type, deal_status, country, region) and min/max range for date columns (deal_date).PreqinPreqin
PluginrequiredData & Analytics - Entity Contactspreqin · Use this when the user wants contacts for a known fund manager, investor, service provider, investment consultant, lead partner, or company executive. Reuse a known firm or company ID or call preqin_search to obtain it. Specify entity_type to scope the search: 'fund_manager', 'investor', 'service_provider' (uses firm_id), 'investment_consultant', 'lead_partner' (uses firm_id), 'company_executive' (uses company ID — pass the company/asset ID as firm_id). If entity_type is omitted, all table types are searched. Supports optional filters: asset_class (pe, pd, re, inf, nr, hf), title (honorific), and country (location). Before applying filters whose exact values are not already known, use preqin_contacts_filter_values. Returns contact details including title, name, job title, email, phone, location, and LinkedIn URL. Returning previously unseen contacts consumes the caller's subscription entity quota; repeating a call that returns only previously seen contacts does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Entity Deal Historypreqin · Use this when the user wants deal history across all asset classes (Infrastructure, Private Debt, Venture Capital, Buyout, Real Estate). Optionally scope to a single entity via asset_id (use preqin_search to obtain the ID). For Real Estate assets the ID starts with 'RE' (e.g. 'RE42546'). Supports filtering by deal_type, deal_status, country, region, deal_size_range, and date_range. Before applying categorical filters whose exact values are not already known, use preqin_deal_filter_values. 'deal_id' and 'deal_url' are always returned along with all available columns. ALWAYS render target as a clickable markdown link using deal_url when deal_url is present. Returning previously unseen deals consumes the caller's subscription entity quota; repeating a call that returns only previously seen deals does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Firm Newspreqin · Use this when the user wants Preqin news for one firm or across all firms. When scoping to one firm, reuse a known firm ID or call preqin_search to obtain it; omit firm_id for all firms. Supports filtering by news_category and asset_class with multiple values OR'd; across columns AND'd. Before applying categorical filters whose exact values are not already known, use preqin_news_filter_values. 'firm_id' and 'link' are always returned. Use the columns parameter to select additional fields (defaults to all). ALWAYS render headline as a clickable markdown link using link when link is present.PreqinPreqin
PluginrequiredData & Analytics - Fund Filter Valuespreqin · Use this when valid categorical fund filters are needed before calling preqin_funds. Returns distinct values for categorical columns (strategy, status, fund_currency, primary_region_focus, asset_class, fund_structure, domicile).PreqinPreqin
PluginrequiredData & Analytics - Fund Investorspreqin · Use this when the user wants the investors in one known fund. Reuse a known fund ID or call preqin_search to obtain it. Returns investor details including type, committed amount, known fund investments, and country. ALWAYS render investor_name as a clickable markdown link using investor_url. Returning previously unseen investors consumes the caller's subscription entity quota; repeating a call that returns only previously seen investors does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Fund Investors Filter Valuespreqin · Use this when valid categorical investor filters are needed before calling preqin_fund_investors. Returns distinct values for categorical columns (investor_type, country).PreqinPreqin
PluginrequiredData & Analytics - Fund Manager Filter Valuespreqin · Use this when valid categorical fund-manager filters are needed before calling preqin_fund_managers. Returns distinct values for categorical columns (firm_type, country, region, firm_ownership, asset_class).PreqinPreqin
PluginrequiredData & Analytics - Fund Manager Investorspreqin · Use this when the user wants investors committed to funds managed by one known fund manager. Reuse a known fund manager ID or call preqin_search to obtain it. Returns investor name, type, number of funds, city, and country. Supports filtering by investor_type, country, no_of_funds_range, and asset_class. ALWAYS render investor_name as a clickable markdown link using investor_url. Returning previously unseen investors consumes the caller's subscription entity quota; repeating a call that returns only previously seen investors does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Fund Manager Investors Filter Valuespreqin · Use this when valid categorical investor filters are needed before calling preqin_fund_manager_investors. Returns distinct values for categorical columns (investor_type, country, asset_class).PreqinPreqin
PluginrequiredData & Analytics - Fund Manager Searchpreqin · Use this when the user wants to find, filter, or compare fund managers across asset classes. Do not use it for a detailed profile of one already-known fund manager. Supports categorical filters (firm_type, country, region, firm_ownership, asset_class) with multiple values OR'd, and numeric range filters ({min, max} for year_established, aum_usd_mn, estimated_dry_powder_usd_mn, total_funds_raised_10yr_usd_mn, ac_aum_usd_mn, total_funds_in_market, total_funds_closed). Filters across columns are AND'd. Before applying categorical filters whose exact values are not already known, use preqin_fund_manager_filter_values. ALWAYS render firm_name as a clickable markdown link using preqin_pro_url. Returning previously unseen fund managers consumes the caller's subscription entity quota; repeating a call that returns only previously seen fund managers does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Fund Performancepreqin · Use this when the user wants performance data for one or more known funds. Reuse known fund IDs or call preqin_search to obtain them. Supports filtering by asset_class, net IRR, DPI, RVPI, net multiple ranges, and as-at date range. Use latest_only=true for the most recent record per fund. Returns commitment, called/distributed, DPI/RVPI, net IRR, net multiple, and quartile rank. ALWAYS render fund_name as a clickable markdown link using fund_url. Returning previously unseen funds consumes the caller's subscription entity quota; repeating a call that returns only previously seen funds does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Fund Searchpreqin · Use this when the user wants to find, filter, or compare funds across asset classes.
Do not use it for a detailed profile of one already-known fund.
Supports filtering by fund_id or fund_manager_id (use preqin_search to find it), categorical filters (strategy, status, fund_currency, primary_region_focus, asset_class, fund_structure, domicile) with multiple values OR'd, and numeric range filters ({min, max} for vintage, closed_size, target_size, fund_size_usd, target_size_usd_mn, final_close_size_usd_mn, aum_mn, dry_powder_mn). Filters across columns are AND'd.
Before applying categorical filters whose exact values are not already known, use preqin_fund_filter_values.
COLUMN-SELECTION POLICY:
- Before calling this tool, select only the fields needed to answer the user's request via the 'columns' parameter.
- Do not request fields merely because they are available.
- Do not request long-text fields such as 'overview' unless the user asks for descriptions or the field is necessary to distinguish results.
- The final response must display every requested field.
- Therefore, requested fields should match the intended output columns exactly.
- Unselected fields and null values are excluded from the response to reduce token usage.
ALWAYS render fund_name as a clickable markdown link using fund_url.
Returning previously unseen funds consumes the caller's subscription entity quota; repeating a call that returns only previously seen funds does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Fund Service Providerspreqin · Use this when the user wants service providers for one known fund. Reuse a known fund ID or call preqin_search to obtain it. Returns provider name, role, number of funds serviced, city, and country. Supports filtering by role, country, no_of_funds_range, and asset_class. ALWAYS render sp_name as a clickable markdown link using sp_url. Returning previously unseen service providers consumes the caller's subscription entity quota; repeating a call that returns only previously seen providers does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Fund Service Providers Filter Valuespreqin · Use this when valid categorical service-provider filters are needed before calling preqin_fund_service_providers. Returns distinct values for categorical columns (role, country, asset_class).PreqinPreqin
PluginrequiredData & Analytics - Investment Consultant Filter Valuespreqin · Use this when valid categorical consultant filters are needed before calling preqin_investment_consultant. Returns distinct values for categorical columns (region, client_types).PreqinPreqin
PluginrequiredData & Analytics - Investment Consultantspreqin · Use this when the user wants to find, filter, or compare investment consultants. Do not use it for unrelated firm types. Supports filtering by firm_id, region, AUA range (USD MN), and client types. Before applying categorical filters whose exact values are not already known, use preqin_investment_consultant_filter_values. ALWAYS render consultant_name as a clickable markdown link using consultant_url. Returning previously unseen consultants consumes the caller's subscription entity quota; repeating a call that returns only previously seen consultants does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Investor Commitment Summarypreqin · Use this when the user wants a commitment summary for one known investor, grouped by asset class and fund type. Reuse a known investor ID or call preqin_search to obtain it. Supports filtering by asset_class and fund_type with multiple values OR'd; across columns AND'd. Before applying categorical filters whose exact values are not already known, use preqin_investor_commitments_filters. Returns number of funds and total committed amount (USD MN). Returning a summary for a previously unseen investor consumes the caller's subscription entity quota; repeating a call for an already-seen investor does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Investor Commitment Summary Filter Valuespreqin · Use this when valid categorical filters are needed before calling preqin_investor_commitment_summary. Returns distinct values for categorical columns (asset_class, fund_type).PreqinPreqin
PluginrequiredData & Analytics - Investor Filter Valuespreqin · Use this when valid categorical investor filters are needed before calling preqin_investors. Returns distinct values for categorical columns (firm_type, country, region, asset_class).PreqinPreqin
PluginrequiredData & Analytics - Investor Searchpreqin · Use this when the user wants to find, filter, or compare investors across asset classes. Do not use it for a detailed profile of one already-known investor. Supports categorical filters (firm_type, country, region, asset_class) with multiple values OR'd, and numeric range filters ({min, max} for aum_usd_mn, fund_investments, asset_class_allocation_usd_mn, asset_class_allocation_pct, dry_powder_min_usd_mn, dry_powder_max_usd_mn). Filters across columns are AND'd. Before applying categorical filters whose exact values are not already known, use preqin_investor_filter_values. ALWAYS render firm_name as a clickable markdown link using preqin_pro_url. Returning previously unseen investors consumes the caller's subscription entity quota; repeating a call that returns only previously seen investors does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - News Filter Valuespreqin · Use this when valid categorical news filters are needed before calling preqin_news. Returns distinct values for categorical columns (news_category, asset_class).PreqinPreqin
PluginrequiredData & Analytics - Preqin Profilepreqin · Use this when the user wants a detailed profile for one known Preqin entity or deal; do not use it for discovery or list searches. Use the profile_type parameter to specify what to look up:
- 'investor': firm type, AUM, dry powder, investment/fund focus, asset class allocation, strategy/geographic/industry preferences, next-12-months plans. Returns one row per entitled asset class.
- 'asset': description, ownership, industry, location, valuation, financing summary.
- 'fund': size, vintage, status, target/final close size, dry powder, AUM, geographic/industry focus.
- 'fundManager': firm info, location, AUM, strategies, geographies, industries, dry powder, funds raised. Returns one row per entitled asset class.
- 'deal': deal details (size, date, status, valuation multiples) across PE/VC/PD/INF/RE. The deal ID must come from preqin_entity_deal_history — deals are not in preqin_search.
For all other profile types, reuse a known entity ID or use preqin_search to obtain it. Returning a previously unseen entity consumes the caller's subscription entity quota; repeating a call for an already-seen entity does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Private Capital Benchmarkspreqin · Use this when the user wants private-capital benchmark statistics such as median IRR and multiples.
Pass a fund_id (use preqin_search to find it) to see only the benchmark that fund is a constituent of (the peer group it belongs to). Note: not all funds have a benchmark — only ~15% of funds with reported performance data are assigned to a peer group.
Supports categorical filters (constituent_as_at, strategy, region_name) with multiple values OR'd, and numeric range filters ({min, max} for vintage, net_irr_median, net_multiple_median, rvpi_median, dpi_median, called_median, constituent_no_of_funds, constituent_size_usd_bn). Filters across columns are AND'd.
Before applying categorical filters whose exact values are not already known, use preqin_pc_benchmarks_filter_values.
Returns Benchmark ID, Name, Fund Type, Region, Strategy, Vintage, Constituent As-at Date, Number of Funds, Size (USD Bn), Net IRR Median, Net Multiple Median, RVPI Median, DPI Median, and Called Median.PreqinPreqin
PluginrequiredData & Analytics - Private Capital Benchmarks Filter Valuespreqin · Use this when valid categorical benchmark filters are needed before calling preqin_private_capital_benchmarks. Returns distinct values for categorical columns (strategy, region_name).PreqinPreqin
PluginrequiredData & Analytics - Quota Statuspreqin · Use this when the user asks about entity-quota usage, a result reports a limit, or results appear incomplete. Returns how many entities have been used, the total limit, how many remain, and when the quota resets. The quota is a subscription-wide cap on unique entities returned across all Preqin tools. Once it is exhausted (remaining reaches 0), those tools stop returning new entities and will only keep returning entities already 'seen' (previously granted) for this account, until the quota resets or capacity is released.PreqinPreqin
PluginrequiredData & Analytics - Search Preqinpreqin · Use this when a named entity must be resolved to a Preqin ID for an ID-based tool. Searches companies, investors, fund managers, service providers, funds, consultants, and assets. Do not call it before list or filter tools that do not require an entity ID, and reuse an ID already returned by another tool. Note: Real Estate asset IDs are returned with an 'RE' prefix (e.g. 'RE42546') — pass them as-is to downstream tools.PreqinPreqin
PluginrequiredData & Analytics - Secondary Market Transactionspreqin · Use this when the user wants secondary-market transactions across asset classes. When scoping to one firm, reuse a known firm ID or call preqin_search to obtain it. Enriched with seller type and seller country from seller profiles. Supports filtering by transaction_type, asset_class, seller_type, country, region, and transaction size (min/max). Before applying categorical filters whose exact values are not already known, use preqin_secondaries_filter_values. Use the columns parameter to select which fields are returned (defaults to all). Returning previously unseen firms consumes the caller's subscription entity quota; repeating a call that returns only previously seen firms does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Secondary Transaction Filter Valuespreqin · Use this when valid categorical filters are needed before calling preqin_secondaries. Returns distinct values for categorical columns (transaction_type, asset_class, seller_type, country, region).PreqinPreqin
PluginrequiredData & Analytics - Service Provider Dealspreqin · Use this when the user wants deals associated with one known service provider across asset classes. Reuse a known service provider ID or call preqin_search to obtain it. Supports filtering by asset_class, deal_status, deal_date range (ISO YYYY-MM-DD), deal_size range (USD MN), country, and region. Use preqin_service_provider_deals_filter_values to discover valid categorical filter options. Returns Portfolio Company, Deal Date, Asset Class, Deal Status, Deal Size, Buyers, Sellers, Role, and Buyer / Seller. Returning previously unseen deals consumes the caller's subscription entity quota; repeating a call that returns only previously seen deals does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Service Provider Deals Filter Valuespreqin · Use this when valid categorical filters are needed before calling preqin_service_provider_deals. Returns distinct values for categorical columns (asset_class, deal_status, country, region).PreqinPreqin
PluginrequiredData & Analytics - Service Provider Fund Servicespreqin · Use this when the user wants funds serviced by one known service provider. Reuse a known service provider ID or call preqin_search with entity_type='serviceProvider' to obtain it. Returns Fund Name, Fund Year, Strategy, Primary Fund Focus, Status, Fund Size, Fund Manager Name, Fund Structure, Domicile, and Asset Class. Supports filtering by asset_class, strategy, status, primary_fund_focus, domicile, fund_year_range, and fund_size_range. Use preqin_sp_fund_services_filter_values to discover valid categorical filter options. ALWAYS render fund_name as a clickable markdown link using fund_url. Returning previously unseen funds consumes the caller's subscription entity quota; repeating a call that returns only previously seen funds does not consume additional quota.PreqinPreqin
PluginrequiredData & Analytics - Service Provider Fund Services Filter Valuespreqin · Use this when valid categorical filters are needed before calling preqin_sp_fund_services. Returns distinct values for categorical columns (asset_class, strategy, status, primary_fund_focus, domicile).PreqinPreqin
PluginrequiredData & Analytics
What is Tool Explorer?
Tool Explorer indexes the callable tool names and descriptions attached to public registry profiles. It is useful for seeing what agents can actually invoke, not just which profile exists.
How do category and verb filters work?
Category filters use the live registry category rollup. Verb filters use the public tool insights rollup, so the page stays backed by the same read models as the tracker charts.
Why do auth requirements matter?
Auth requirements show whether a tool is likely usable without account connection, requires authentication, is private, or is unknown in the current snapshot.