Excel integration
Microsoft Excel is a powerful spreadsheet application for data analysis,…
- Provider
- excel
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 54 available
Quick start
Call Excel from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Excel's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"EXCEL_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
OverSkill hosts the OAuth application for Excel. End-users click Connect on the integration card in your app, complete the OAuth flow with Excel, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2, S2S_OAUTH2.
Available actions
54 actions exposed via the
Excel integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
EXCEL_ADD_CHART -
EXCEL_ADD_SHAREPOINT_WORKSHEET -
EXCEL_ADD_TABLE -
EXCEL_ADD_TABLE_COLUMN -
EXCEL_ADD_TABLE_ROW -
EXCEL_ADD_WORKBOOK_PERMISSION -
EXCEL_ADD_WORKSHEET -
EXCEL_APPLY_TABLE_FILTER -
EXCEL_APPLY_TABLE_SORT -
EXCEL_CLEAR_RANGE -
EXCEL_CLEAR_TABLE_FILTER -
EXCEL_CLOSE_SESSION
Show all 54 actions
-
EXCEL_CONVERT_TABLE_TO_RANGE -
EXCEL_CREATE_WORKBOOK -
EXCEL_DELETE_TABLE_COLUMN -
EXCEL_DELETE_TABLE_ROW -
EXCEL_DELETE_WORKSHEET -
EXCEL_EXPORT_WORKBOOK_TO_PDF -
EXCEL_GET_CHART_AXIS -
EXCEL_GET_CHART_DATA_LABELS -
EXCEL_GET_CHART_LEGEND -
EXCEL_GET_RANGE -
EXCEL_GET_SESSION -
EXCEL_GET_SHAREPOINT_RANGE -
EXCEL_GET_SHAREPOINT_WORKSHEET -
EXCEL_GET_TABLE_COLUMN -
EXCEL_GET_WORKBOOK -
EXCEL_GET_WORKSHEET -
EXCEL_GET_WORKSHEET_USED_RANGE -
EXCEL_INSERT_RANGE -
EXCEL_LIST_CHARTS -
EXCEL_LIST_CHART_SERIES -
EXCEL_LIST_COMMENTS -
EXCEL_LIST_DRIVE_ITEM_CHILDREN -
EXCEL_LIST_FILES -
EXCEL_LIST_NAMED_ITEMS -
EXCEL_LIST_SHAREPOINT_TABLES -
EXCEL_LIST_SHAREPOINT_WORKSHEETS -
EXCEL_LIST_TABLE_COLUMNS -
EXCEL_LIST_TABLE_ROWS -
EXCEL_LIST_TABLES -
EXCEL_LIST_WORKBOOK_PERMISSIONS -
EXCEL_LIST_WORKSHEETS -
EXCEL_MERGE_CELLS -
EXCEL_PROTECT_WORKSHEET -
EXCEL_SEARCH_FILES -
EXCEL_SORT_RANGE -
EXCEL_UPDATE_CHART -
EXCEL_UPDATE_CHART_LEGEND -
EXCEL_UPDATE_RANGE -
EXCEL_UPDATE_SHAREPOINT_RANGE -
EXCEL_UPDATE_TABLE -
EXCEL_UPDATE_WORKSHEET -
EXCEL_UPLOAD_WORKBOOK
Build with Excel
Open OverSkill, describe what you want to build, and reference Excel in your prompt — the AI will wire up the integration automatically.