Submit an employee reimbursement through Ramp MCP or Ramp CLI with receipt extraction, policy/category validation, draft review, and explicit confirmation before submission.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionramp-submit-reimbursementExecute the skills CLI command in your project's root directory to begin installation:
Fetches ramp-submit-reimbursement from ramp.com/submit-reimbursement and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate ramp-submit-reimbursement. Access via /ramp-submit-reimbursement in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
| name | "ramp-submit-reimbursement" |
| title | "Ramp Submit Reimbursement" |
| description | "Submit an employee reimbursement through Ramp MCP or Ramp CLI with receipt extraction, policy/category validation, draft review, and explicit confirmation before submission." |
| website | "ramp.com" |
| category | "finance" |
| tags | ["finance", "expenses", "reimbursements", "mcp", "cli", "policy", "human-confirmation"] |
| status | "launched" |
| partner | true |
| source | "official Ramp MCP support + Ramp CLI docs + non-mutating endpoint checks, 2026-05-08" |
| updated | "2026-05-08" |
| recommended_method | "cli" |
| alternative_methods | - method: "mcp" rationale: "Ramp's official MCP server at https://mcp.ramp.com/mcp exposes natural-language tools for reimbursements, receipts, policies, funds, categories, and tracking categories. Prefer MCP when an interactive Ramp MCP connection is already wired into the agent client." - method: "browser" rationale: "Use Ramp's web UI only when MCP/CLI is unavailable or the tool reports that a required field cannot be edited through the API surface. Browser submission is authenticated, stateful, and should still stop for user confirmation before clicking Submit." |
Create, complete, and submit an employee reimbursement in Ramp using the first-party Ramp MCP or Ramp CLI whenever available. This is a write workflow: extract receipt details, validate required policy/accounting fields, build or update a draft reimbursement, present the exact draft back to the user, and only submit after explicit confirmation.
Official references:
https://support.ramp.com/hc/en-us/articles/45516494479891-Ramp-MCP
https://support.ramp.com/hc/en-us/articles/4417618448403-Submitting-reimbursements
https://docs.ramp.com/llms-guides/cli.txt
https://docs.ramp.com/llms-guides/ramp-mcp.txt
https://mcp.ramp.com/mcp
https://demo-mcp.ramp.com/mcp
https://github.com/ramp-public/ramp-cli
--help discovery for exact command syntax in the installed CLI version before invoking a write command.Ramp's official MCP server is the best fit for interactive reimbursement submission because it exposes natural-language tools for reimbursements, receipts, policies, funds, categories, tracking categories, and Help Center answers.
Production server:
https://mcp.ramp.com/mcp
Demo server for sample data only:
https://demo-mcp.ramp.com/mcp
For Codex / Claude Code / Cursor-style setups, confirm the Ramp server is connected using the client-native MCP inspection command. If the client exposes tool names, look for reimbursement-related tools such as:
ramp_get_reimbursementsramp_get_reimbursements_for_approvalramp_edit_reimbursementramp_approve_or_reject_reimbursementramp_get_tracking_categoriesramp_get_tracking_category_optionsramp_answer_policy_questionramp_ask_help_centerRamp's docs say tools are added regularly. If an expected tool is missing, disconnect/reconnect Ramp in the MCP client and restart the agent session.
From the receipt image/PDF/email or user-provided text, extract:
If OCR confidence is low, ask the user to confirm the uncertain field before creating a draft.
Before editing/submitting, use Ramp MCP to answer:
Use Ramp's policy/help tools for ambiguous cases. If the policy answer is uncertain, present it as a blocker rather than guessing.
Use the Ramp MCP reimbursement tools exposed by the connected client. The exact tool schema may vary by release, so inspect the available tool description/schema before calling it.
Draft payload should include only verified fields:
{
"type": "out_of_pocket",
"merchant": "Acme Cafe",
"amount": { "currency_code": "USD", "amount": "42.18" },
"transaction_date": "2026-05-08",
"memo": "Lunch during onsite customer meeting",
"receipt_files": ["receipt.pdf"],
"fund_or_spend_program": "Customer Meetings",
"category": "Meals",
"attendees": ["..."],
"trip": "..."
}
If the user supplied several receipts, create separate drafts unless they explicitly ask to group them. Ramp's support docs note that emailing multiple receipts creates multiple draft reimbursements and that bulk/group submission may be available for eligible accounts.
After drafting or editing, re-read the draft and check:
If anything is missing, stop and ask for the missing value or leave the reimbursement as a draft.
Present a concise confirmation:
Ready to submit this Ramp reimbursement?
Merchant: Acme Cafe
Date: 2026-05-08
Amount: USD 42.18
Memo: Lunch during onsite customer meeting
Category/fund: Meals / Customer Meetings
Receipt: receipt.pdf
Policy: no issues found
Ask the user to confirm with an unambiguous yes. After confirmation, submit the draft through the MCP reimbursement submit action if available. Return the reimbursement ID, status, and Ramp URL if the tool provides one.
Use the CLI when a terminal-first or scheduled agent loop is preferred. Ramp's docs verify the CLI install path, OAuth login, agent JSON output, and the reimbursement resource names, but individual flags can change. Always inspect help before writes.
Discover whether ramp exists:
command -v ramp
ramp --help
Official install command:
curl -fsSL https://agents.ramp.com/install.sh | sh
Authenticate:
ramp auth login
ramp users me --agent
Ramp CLI defaults to sandbox unless configured otherwise. Confirm target environment before real submissions:
ramp env --help
ramp config --help
Do not assume flags. Inspect the installed CLI:
ramp reimbursements --help
ramp reimbursements list --help
ramp reimbursements edit --help
ramp reimbursements submit --help
ramp receipts --help
ramp receipts upload --help
ramp receipts attach --help
ramp general policy --help
ramp accounting categories --help
ramp accounting category-options --help
The official CLI docs list these reimbursement tools:
ramp reimbursements list
ramp reimbursements pending
ramp reimbursements submit
ramp reimbursements approve
ramp reimbursements edit
Use --agent or JSON output for machine parsing, --no-input only after all required values are known, and --dry_run when the tool exposes it.
ramp receipts ... command.ramp reimbursements list --help
ramp transactions list --help
ramp accounting categories --help
ramp accounting category-options --help
ramp reimbursements edit --help or the relevant draft command if present.ramp reimbursements submit --help.If the installed CLI has a --json TEXT request-body option for the reimbursement tool, prefer a structured JSON file or heredoc over shell-escaped inline arguments.
Use browser automation only when MCP/CLI cannot complete the workflow. Ramp's support docs describe the web path as Home > New > Reimbursement / Request reimbursement, where users upload receipts and add receipt, memo, and policy-required details.
Browser rules:
https://app.ramp.com/ and use the Reimbursement flow.If Ramp credentials, MCP, or CLI are unavailable:
https://demo-mcp.ramp.com/mcp only to show the flow with sample data.Read-only output:
{
"ready_to_submit": false,
"reason": "Ramp credentials unavailable",
"draft": {
"merchant": "Acme Cafe",
"date": "2026-05-08",
"amount": "USD 42.18",
"memo": "Needs user confirmation",
"receipt": "receipt.pdf"
},
"next_steps": [
"Connect Ramp MCP at https://mcp.ramp.com/mcp or authenticate Ramp CLI",
"Confirm fund/category and any required accounting fields",
"Submit after reviewing the final draft"
]
}
Successful draft created, not submitted:
{
"success": true,
"submitted": false,
"status": "draft",
"reimbursement_id": "...",
"needs_confirmation": true,
"summary": {
"merchant": "Acme Cafe",
"date": "2026-05-08",
"amount": "USD 42.18",
"memo": "Lunch during onsite customer meeting",
"category": "Meals",
"receipt_attached": true
}
}
Submitted after confirmation:
{
"success": true,
"submitted": true,
"status": "pending_approval",
"reimbursement_id": "...",
"url": "https://app.ramp.com/...",
"submitted_after_user_confirmation": true
}
Blocked:
{
"success": false,
"submitted": false,
"reason": "missing_required_fields",
"missing": ["business purpose memo", "accounting category"],
"draft_saved": true
}
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
msitarzewski/agency-agents
hiive.com/private-market-verified-search-rhqej1
finance.yahoo.com/search-stock-news-dnf5k3
link.com/create-payment-credential
sec.gov/search-edgar-fulltext-dpk6r2
msitarzewski/agency-agents
ramp-submit-reimbursement has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in ramp-submit-reimbursement — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
ramp-submit-reimbursement is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in ramp-submit-reimbursement — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
ramp-submit-reimbursement has been reliable in day-to-day use. Documentation quality is above average for community skills.
ramp-submit-reimbursement reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend ramp-submit-reimbursement for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
ramp-submit-reimbursement is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: ramp-submit-reimbursement is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: ramp-submit-reimbursement is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 26