> For the complete documentation index, see [llms.txt](https://docs.metacopier.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.metacopier.io/ai/ai/tools.md).

# Tool reference

Every tool the MCP server publishes, grouped by [toolset](/ai/ai/endpoints.md#toolsets). You do not have to memorise any of this. The assistant picks the right tool from your question. The list is here so you can see exactly what an assistant is able to reach before you connect it.

<table><thead><tr><th width="120" align="center">Type</th><th>Meaning</th></tr></thead><tbody><tr><td align="center">read</td><td>Only reads. Available on every connection, including read only ones.</td></tr><tr><td align="center"><strong>write</strong></td><td>Changes something. Needs a read write credential and, on OAuth, the matching scope. Removed entirely on a <code>/readonly</code> endpoint.</td></tr></tbody></table>

{% hint style="info" %}
`reference` and `docs` are part of every connection. All other toolsets have to be selected, see [endpoints and toolsets](/ai/ai/endpoints.md).
{% endhint %}

### `accounts`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_account</code></td><td align="center">read</td><td>Returns one trading account by id</td></tr><tr><td><code>metacopier_get_account_creation_status</code></td><td align="center">read</td><td>Returns the state of an account creation that was started asynchronously</td></tr><tr><td><code>metacopier_get_account_information</code></td><td align="center">read</td><td>Returns the live broker state of one account: connection, margin, leverage, floating profit and today's, this week's and this month's result</td></tr><tr><td><code>metacopier_get_account_performance</code></td><td align="center">read</td><td>Returns headline performance metrics of one account: win rate, profit factor, expectancy, drawdown, streaks and average trade size</td></tr><tr><td><code>metacopier_get_configuration_summary</code></td><td align="center">read</td><td>Lists every account with its copier state in one call: whether it has active, disabled or monitor only copiers, and whether it runs on a dedicated IP</td></tr><tr><td><code>metacopier_list_account_features</code></td><td align="center">read</td><td>Lists the features enabled on one account with their configuration</td></tr><tr><td><code>metacopier_list_accounts</code></td><td align="center">read</td><td>Lists the trading accounts in the caller's project with account type, connection status, balance and equity</td></tr><tr><td><code>metacopier_list_equity_history</code></td><td align="center">read</td><td>Lists sampled balance, equity and floating profit readings of one account over time</td></tr><tr><td><code>metacopier_list_master_accounts</code></td><td align="center">read</td><td>Lists the master accounts of the project together with the slave accounts that copy from them</td></tr><tr><td><code>metacopier_list_risk_limits</code></td><td align="center">read</td><td>Lists the risk limits configured on one account, including the limit type, the threshold and whether it closes all open positions when hit</td></tr><tr><td><code>metacopier_list_slave_accounts</code></td><td align="center">read</td><td>Lists the accounts that copy from the given master account</td></tr><tr><td><code>metacopier_create_account</code></td><td align="center"><strong>write</strong></td><td>Connects a new trading account to the project</td></tr><tr><td><code>metacopier_create_account_feature</code></td><td align="center"><strong>write</strong></td><td>Adds a feature to one account, which is how filters, trading windows, news filters and the rest of the account behaviour are configured</td></tr><tr><td><code>metacopier_create_risk_limit</code></td><td align="center"><strong>write</strong></td><td>Creates a risk limit on one account, for example a daily loss cap</td></tr><tr><td><code>metacopier_delete_account</code></td><td align="center"><strong>write</strong></td><td>Removes a trading account from the project</td></tr><tr><td><code>metacopier_delete_account_feature</code></td><td align="center"><strong>write</strong></td><td>Removes a feature from one account</td></tr><tr><td><code>metacopier_delete_risk_limit</code></td><td align="center"><strong>write</strong></td><td>Deletes one risk limit from an account</td></tr><tr><td><code>metacopier_reconnect_account</code></td><td align="center"><strong>write</strong></td><td>Drops and rebuilds the broker connection of one account</td></tr><tr><td><code>metacopier_rename_account</code></td><td align="center"><strong>write</strong></td><td>Changes the display name of one account</td></tr><tr><td><code>metacopier_reset_profit_target</code></td><td align="center"><strong>write</strong></td><td>Resets the counter behind one profit target feature, so it starts measuring again from now</td></tr><tr><td><code>metacopier_reset_risk_limit</code></td><td align="center"><strong>write</strong></td><td>Resets the counter behind one risk limit, so a limit that already tripped starts measuring again from now</td></tr><tr><td><code>metacopier_start_account</code></td><td align="center"><strong>write</strong></td><td>Starts one account so it connects to the broker and its copiers run</td></tr><tr><td><code>metacopier_stop_account</code></td><td align="center"><strong>write</strong></td><td>Stops one account</td></tr><tr><td><code>metacopier_update_account_feature</code></td><td align="center"><strong>write</strong></td><td>Changes named settings on a feature of one account</td></tr><tr><td><code>metacopier_update_risk_limit</code></td><td align="center"><strong>write</strong></td><td>Changes named settings on one risk limit, for example the threshold, the reset time or whether it is active</td></tr></tbody></table>

### `templates`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_template_revision</code></td><td align="center">read</td><td>Returns the metadata of one stored template revision</td></tr><tr><td><code>metacopier_list_account_templates</code></td><td align="center">read</td><td>Lists the account templates of a project, with the current revision, how many accounts are linked and whether any need attention</td></tr><tr><td><code>metacopier_list_template_linked_accounts</code></td><td align="center">read</td><td>Lists the accounts linked to one template and the revision each of them last received, so drift is visible</td></tr><tr><td><code>metacopier_list_template_revisions</code></td><td align="center">read</td><td>Lists the revision history of one account template: which revision was saved when and by whom</td></tr><tr><td><code>metacopier_apply_account_template</code></td><td align="center"><strong>write</strong></td><td>Applies one account template to an account, which overwrites the account's copier and feature configuration with what the template says</td></tr><tr><td><code>metacopier_create_account_template</code></td><td align="center"><strong>write</strong></td><td>Creates an account template in a project, which is a saved set of account settings that can be applied to accounts later</td></tr><tr><td><code>metacopier_delete_account_template</code></td><td align="center"><strong>write</strong></td><td>Deletes an account template from a project</td></tr><tr><td><code>metacopier_update_account_template</code></td><td align="center"><strong>write</strong></td><td>Changes named fields on one account template</td></tr></tbody></table>

### `copiers`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_copier</code></td><td align="center">read</td><td>Returns one copy relation with its full configuration</td></tr><tr><td><code>metacopier_get_copier_symbol_mappings</code></td><td align="center">read</td><td>Returns the symbol mappings currently in effect for one copier</td></tr><tr><td><code>metacopier_list_copier_features</code></td><td align="center">read</td><td>Lists the features enabled on one copier with their configuration</td></tr><tr><td><code>metacopier_list_copiers</code></td><td align="center">read</td><td>Lists the copy relations of one account: source, scaling mode, multiplier, lot limits and whether the copier is active or monitor only</td></tr><tr><td><code>metacopier_list_project_symbol_mappings</code></td><td align="center">read</td><td>Lists the project wide symbol mapping rules</td></tr><tr><td><code>metacopier_create_copier</code></td><td align="center"><strong>write</strong></td><td>Creates a copier that copies trades from a master account onto one slave account</td></tr><tr><td><code>metacopier_create_copier_feature</code></td><td align="center"><strong>write</strong></td><td>Adds a feature to one copier. Cooldowns, profit and drawdown targets, spread and news filters, trading windows, symbol permissions and trailing stops are features rather than copier settings, so they are added here</td></tr><tr><td><code>metacopier_create_symbol_mapping</code></td><td align="center"><strong>write</strong></td><td>Creates a project symbol mapping, which tells copiers that a symbol on the master corresponds to a differently named symbol on the slave</td></tr><tr><td><code>metacopier_delete_copier</code></td><td align="center"><strong>write</strong></td><td>Deletes one copier from an account</td></tr><tr><td><code>metacopier_delete_copier_feature</code></td><td align="center"><strong>write</strong></td><td>Removes a feature from one copier. Turning the behaviour off with <code>metacopier_update_copier</code> does not work, because none of it is a setting on the copier</td></tr><tr><td><code>metacopier_delete_symbol_mapping</code></td><td align="center"><strong>write</strong></td><td>Deletes one project symbol mapping</td></tr><tr><td><code>metacopier_reset_masaniello</code></td><td align="center"><strong>write</strong></td><td>Resets the progression of one Masaniello feature back to its first step, either for every symbol or for one named symbol</td></tr><tr><td><code>metacopier_resync_copier</code></td><td align="center"><strong>write</strong></td><td>Rebuilds the link between the positions on the source account and the positions on this copier's target account</td></tr><tr><td><code>metacopier_set_copiers_state</code></td><td align="center"><strong>write</strong></td><td>Sets every copier that feeds this account to the same state at once</td></tr><tr><td><code>metacopier_update_copier</code></td><td align="center"><strong>write</strong></td><td>Changes named settings on one copier, for example the multiplier, the lot size caps or whether it is active</td></tr><tr><td><code>metacopier_update_copier_feature</code></td><td align="center"><strong>write</strong></td><td>Changes named settings on a feature of one copier. Reads the feature first and preserves every setting not named in the changes</td></tr><tr><td><code>metacopier_update_symbol_mapping</code></td><td align="center"><strong>write</strong></td><td>Changes named fields on one project symbol mapping, for example the target symbol or the priority</td></tr></tbody></table>

### `strategies`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_strategy</code></td><td align="center">read</td><td>Returns one signal strategy of a project</td></tr><tr><td><code>metacopier_list_strategies</code></td><td align="center">read</td><td>Lists the signal strategies of a project</td></tr><tr><td><code>metacopier_list_strategy_copiers</code></td><td align="center">read</td><td>Lists the copiers that consume one strategy</td></tr><tr><td><code>metacopier_create_strategy</code></td><td align="center"><strong>write</strong></td><td>Creates a strategy in a project</td></tr><tr><td><code>metacopier_create_strategy_copier</code></td><td align="center"><strong>write</strong></td><td>Creates a copier that copies trades from a master account onto a project strategy rather than onto a single account</td></tr><tr><td><code>metacopier_delete_strategy</code></td><td align="center"><strong>write</strong></td><td>Deletes a strategy from a project</td></tr><tr><td><code>metacopier_delete_strategy_copier</code></td><td align="center"><strong>write</strong></td><td>Deletes one copier from a project strategy</td></tr><tr><td><code>metacopier_resync_strategy_copier</code></td><td align="center"><strong>write</strong></td><td>Rebuilds the position link for one copier that runs off a project strategy</td></tr><tr><td><code>metacopier_update_strategy</code></td><td align="center"><strong>write</strong></td><td>Changes named fields on one project strategy: its name, whether it is active, and the key it is listed under</td></tr><tr><td><code>metacopier_update_strategy_copier</code></td><td align="center"><strong>write</strong></td><td>Changes named settings on one copier that runs off a project strategy rather than off a second account</td></tr></tbody></table>

### `trading`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_quote</code></td><td align="center">read</td><td>Returns the current bid and ask of one symbol on one account</td></tr><tr><td><code>metacopier_get_symbol</code></td><td align="center">read</td><td>Returns the broker specification of one symbol</td></tr><tr><td><code>metacopier_list_history_positions</code></td><td align="center">read</td><td>Lists the closed positions of one account in a time range</td></tr><tr><td><code>metacopier_list_open_positions</code></td><td align="center">read</td><td>Lists the currently open positions and pending orders of one account</td></tr><tr><td><code>metacopier_list_symbols</code></td><td align="center">read</td><td>Lists the symbols the broker of this account offers, with contract size, volume steps and whether trading is disabled</td></tr><tr><td><code>metacopier_close_all_positions</code></td><td align="center"><strong>write</strong></td><td>Closes every open position on one account and cancels every pending order on it</td></tr><tr><td><code>metacopier_close_position</code></td><td align="center"><strong>write</strong></td><td>Closes one open position or cancels one pending order</td></tr><tr><td><code>metacopier_modify_position</code></td><td align="center"><strong>write</strong></td><td>Changes the stop loss, the take profit, the volume or the entry price of one open position or pending order</td></tr><tr><td><code>metacopier_open_position</code></td><td align="center"><strong>write</strong></td><td>Opens a position on one account, or places a pending order, and waits for the core to accept it</td></tr><tr><td><code>metacopier_send_order</code></td><td align="center"><strong>write</strong></td><td>Places the same order as metacopier_open_position but returns the moment the core has taken it, without waiting for the broker</td></tr></tbody></table>

### `reports`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_generate_performance_report</code></td><td align="center">read</td><td>Builds a performance report over a period for a set of accounts, projects or features, with balance, equity, drawdown and net profit per account</td></tr><tr><td><code>metacopier_get_cost_forecast</code></td><td align="center">read</td><td>Returns the forecast cost of the current billing period, broken down by position</td></tr><tr><td><code>metacopier_list_invoices</code></td><td align="center">read</td><td>Lists the invoices of a project</td></tr><tr><td><code>metacopier_list_transactions</code></td><td align="center">read</td><td>Lists the balance movements of a project</td></tr></tbody></table>

### `logs`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_list_account_audit_logs</code></td><td align="center">read</td><td>Lists the API calls made against one account: endpoint, status code and duration</td></tr><tr><td><code>metacopier_list_account_logs</code></td><td align="center">read</td><td>Lists the log lines of one account</td></tr><tr><td><code>metacopier_list_project_audit_logs</code></td><td align="center">read</td><td>Lists the API calls made against the project</td></tr><tr><td><code>metacopier_list_project_logs</code></td><td align="center">read</td><td>Lists project level log lines, for example billing and account provisioning events</td></tr><tr><td><code>metacopier_list_signal_follower_audit_logs</code></td><td align="center">read</td><td>Lists the configuration changes made to one follower account of a signal provider: who changed what and when</td></tr><tr><td><code>metacopier_list_signal_follower_logs</code></td><td align="center">read</td><td>Lists the operational log of one follower account of a signal provider</td></tr><tr><td><code>metacopier_acknowledge_logs</code></td><td align="center"><strong>write</strong></td><td>Marks project log entries as read</td></tr></tbody></table>

### `news`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_backtest_news_filter</code></td><td align="center">read</td><td>Replays a news filter setting over the trades this account already closed and reports which of them would have been skipped and what that would have cost or saved</td></tr><tr><td><code>metacopier_get_calendar_exposure</code></td><td align="center">read</td><td>Returns the upcoming calendar events the currently open positions are exposed to, with the volume, margin and floating profit at risk per event</td></tr><tr><td><code>metacopier_get_calendar_heatmap</code></td><td align="center">read</td><td>Returns the event load per currency and day as a grid, so a week can be ranked by how crowded it is before deciding when to trade</td></tr><tr><td><code>metacopier_get_economic_calendar</code></td><td align="center">read</td><td>Returns economic calendar events in a time range, filterable by currency, country and impact</td></tr><tr><td><code>metacopier_get_economic_calendar_event</code></td><td align="center">read</td><td>Returns one economic calendar event with actual, forecast and previous values</td></tr><tr><td><code>metacopier_get_indicator_history</code></td><td align="center">read</td><td>Returns the past releases of the indicator behind one calendar event, with actual, forecast and previous values and the surprise each release scored</td></tr><tr><td><code>metacopier_get_rate_outlook</code></td><td align="center">read</td><td>Returns the current policy rate of each central bank, the next rate decision and the change the market expects</td></tr><tr><td><code>metacopier_get_surprise_index</code></td><td align="center">read</td><td>Returns how often each currency beat or missed its forecast recently, with the average surprise in standard deviations</td></tr><tr><td><code>metacopier_list_bank_holidays</code></td><td align="center">read</td><td>Lists bank holidays in a date range</td></tr><tr><td><code>metacopier_list_calendar_alert_rules</code></td><td align="center">read</td><td>Lists the standing rules that arm calendar reminders automatically, for example \</td></tr><tr><td><code>metacopier_list_calendar_alerts</code></td><td align="center">read</td><td>Lists the calendar reminders that have not fired yet, both the ones armed by hand and the ones a rule created</td></tr><tr><td><code>metacopier_list_market_news</code></td><td align="center">read</td><td>Returns market news articles with sentiment and affected currencies</td></tr><tr><td><code>metacopier_preview_news_filter</code></td><td align="center">read</td><td>Shows the blackout windows a news filter setting would produce for the given symbols, without changing anything</td></tr><tr><td><code>metacopier_add_news_bookmark</code></td><td align="center"><strong>write</strong></td><td>Saves one market news article</td></tr><tr><td><code>metacopier_create_calendar_alert</code></td><td align="center"><strong>write</strong></td><td>Arms a reminder for one economic calendar event that the user names, such as the next ECB rate decision</td></tr><tr><td><code>metacopier_create_calendar_alert_rule</code></td><td align="center"><strong>write</strong></td><td>Creates a standing rule that arms reminders automatically, for example 30 minutes before every high impact USD event</td></tr><tr><td><code>metacopier_delete_calendar_alert</code></td><td align="center"><strong>write</strong></td><td>Disarms one calendar reminder</td></tr><tr><td><code>metacopier_delete_calendar_alert_rule</code></td><td align="center"><strong>write</strong></td><td>Deletes a standing calendar alert rule</td></tr><tr><td><code>metacopier_remove_news_bookmark</code></td><td align="center"><strong>write</strong></td><td>Removes one saved market news article</td></tr></tbody></table>

### `marketplace`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_investor_trader</code></td><td align="center">read</td><td>Returns one trader of the investor program</td></tr><tr><td><code>metacopier_get_investor_trader_performance</code></td><td align="center">read</td><td>Returns the performance metrics of one trader in the investor program: win rate, profit factor, drawdown and the rest of the scorecard</td></tr><tr><td><code>metacopier_get_signal_earnings</code></td><td align="center">read</td><td>Returns the earnings summary of a signal provider: follower count, gross and net amounts and the MetaCopier fee share</td></tr><tr><td><code>metacopier_get_signal_follower_performance</code></td><td align="center">read</td><td>Returns the performance metrics of one follower account of a signal provider: win rate, profit factor, drawdown and the rest of the scorecard</td></tr><tr><td><code>metacopier_list_investor_trader_history</code></td><td align="center">read</td><td>Lists the closed positions one trader of the investor program published in a time range</td></tr><tr><td><code>metacopier_list_investor_traders</code></td><td align="center">read</td><td>Lists the traders available in the investor program, with their headline drawdown limit and current status</td></tr><tr><td><code>metacopier_list_marketplace_signals</code></td><td align="center">read</td><td>Lists the signal providers offered on the MetaCopier marketplace, with their pricing and subscription model</td></tr><tr><td><code>metacopier_list_signal_follower_accounts</code></td><td align="center">read</td><td>Lists the follower accounts subscribed to a signal provider</td></tr><tr><td><code>metacopier_list_signal_follower_positions</code></td><td align="center">read</td><td>Lists the open positions of one follower account of a signal provider, as the provider sees them</td></tr><tr><td><code>metacopier_list_signal_history_positions</code></td><td align="center">read</td><td>Lists the closed positions a signal provider published in a time range</td></tr><tr><td><code>metacopier_list_signal_symbols</code></td><td align="center">read</td><td>Lists the symbols a signal provider trades, as they resolve on one follower account</td></tr><tr><td><code>metacopier_list_subscribed_signals</code></td><td align="center">read</td><td>Lists the signal providers this project may follow, with the terms of each subscription</td></tr><tr><td><code>metacopier_list_traders</code></td><td align="center">read</td><td>Lists the traders this project publishes, with their headline drawdown limit and status</td></tr></tbody></table>

### `dashboards`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_dashboard</code></td><td align="center">read</td><td>Returns one saved dashboard of a project by id</td></tr><tr><td><code>metacopier_list_dashboards</code></td><td align="center">read</td><td>Lists the saved dashboards of a project, with their name, sort order and which one is the default</td></tr><tr><td><code>metacopier_create_dashboard</code></td><td align="center"><strong>write</strong></td><td>Creates a dashboard in a project</td></tr><tr><td><code>metacopier_delete_dashboard</code></td><td align="center"><strong>write</strong></td><td>Deletes a dashboard from a project</td></tr><tr><td><code>metacopier_duplicate_dashboard</code></td><td align="center"><strong>write</strong></td><td>Copies an existing dashboard, optionally under a new name</td></tr></tbody></table>

### `webhooks`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_webhook_data</code></td><td align="center">read</td><td>Returns one stored TradingView webhook payload by id</td></tr><tr><td><code>metacopier_get_webhook_request_status</code></td><td align="center">read</td><td>Returns what became of one TradingView webhook request: whether it succeeded, how many positions it matched, and the error code and hint if it did not</td></tr><tr><td><code>metacopier_list_webhook_data</code></td><td align="center">read</td><td>Lists the payloads an account received through its TradingView webhook store action, newest first</td></tr><tr><td><code>metacopier_delete_webhook_data</code></td><td align="center"><strong>write</strong></td><td>Deletes one stored TradingView webhook payload from an account</td></tr></tbody></table>

### `project`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_project</code></td><td align="center">read</td><td>Returns the project header: name, balance, currency and whether it is blocked</td></tr><tr><td><code>metacopier_list_labels</code></td><td align="center">read</td><td>Lists the account labels defined in a project</td></tr><tr><td><code>metacopier_list_project_features</code></td><td align="center">read</td><td>Lists the features enabled on a project with their configuration</td></tr><tr><td><code>metacopier_create_project_feature</code></td><td align="center"><strong>write</strong></td><td>Adds a feature to a project, which applies it across the project rather than to one account</td></tr><tr><td><code>metacopier_delete_project_feature</code></td><td align="center"><strong>write</strong></td><td>Removes a feature from a project</td></tr><tr><td><code>metacopier_update_project_feature</code></td><td align="center"><strong>write</strong></td><td>Changes named settings on a feature of one project</td></tr></tbody></table>

### `reference`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_describe_connection</code></td><td align="center">read</td><td>Returns which project this connection works on and what it may do: read only or read write, when it expires, and the access rules that apply</td></tr><tr><td><code>metacopier_list_broker_servers</code></td><td align="center">read</td><td>Lists the broker servers known for one platform</td></tr><tr><td><code>metacopier_list_copier_setting_fields</code></td><td align="center">read</td><td>Lists the settings a copier accepts, with their type and allowed values</td></tr><tr><td><code>metacopier_list_enum_values</code></td><td align="center">read</td><td>Lists one of the reference types, as id and name pairs</td></tr></tbody></table>

### `docs`

<table><thead><tr><th width="330">Tool</th><th width="80" align="center">Type</th><th>What it does</th></tr></thead><tbody><tr><td><code>metacopier_get_doc_page</code></td><td align="center">read</td><td>Reads one MetaCopier documentation page in full, as markdown</td></tr><tr><td><code>metacopier_search_docs</code></td><td align="center">read</td><td>Searches the MetaCopier documentation and returns matching pages with an excerpt and a citable link</td></tr></tbody></table>
