Accelo MCP server. Manage Accelo companies, contacts, jobs, tasks, tickets and time.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"accelo": {
"url": "https://accelo.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
list_companies | read | List companies List companies (client organizations). Accelo API: GET /api/v0/companies. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_company | read | Get a company Fetch a single company (client organization). Accelo API: GET /api/v0/companies/{id}. Returns { meta, response }. |
list_contacts | read | List contacts List contacts (people at companies). Accelo API: GET /api/v0/contacts. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_contact | read | Get a contact Fetch a single contact (a person). Accelo API: GET /api/v0/contacts/{id}. Returns { meta, response }. |
list_jobs | read | List jobs (projects) List jobs — Accelo "jobs" are projects. Accelo API: GET /api/v0/jobs. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_job | read | Get a job (project) Fetch a single job (project). Accelo API: GET /api/v0/jobs/{id}. Returns { meta, response }. |
list_tasks | read | List tasks List tasks (units of work logged against an object such as a job or company). Accelo API: GET /api/v0/tasks. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_task | read | Get a task Fetch a single task. Accelo API: GET /api/v0/tasks/{id}. Returns { meta, response }. |
list_activities | read | List activities List activities — notes, emails, calls, and meetings logged against objects. Accelo API: GET /api/v0/activities. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_activity | read | Get an activity Fetch a single activity (note/email/call/meeting). Accelo API: GET /api/v0/activities/{id}. Returns { meta, response }. |
list_invoices | read | List invoices List invoices. Accelo API: GET /api/v0/invoices. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_invoice | read | Get an invoice Fetch a single invoice. Accelo API: GET /api/v0/invoices/{id}. Returns { meta, response }. |
list_prospects | read | List prospects (sales) List prospects — sales opportunities in the pipeline. Accelo API: GET /api/v0/prospects. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_prospect | read | Get a prospect (sale) Fetch a single prospect (sales opportunity). Accelo API: GET /api/v0/prospects/{id}. Returns { meta, response }. |
list_staff | read | List staff List staff (Accelo users in your deployment). Accelo API: GET /api/v0/staff. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_staff | read | Get a staff member Fetch a single staff member. Accelo API: GET /api/v0/staff/{id}. Returns { meta, response }. |
list_issues | read | List issues (tickets) List issues — support/service tickets. Accelo API: GET /api/v0/issues. Supports _page/_limit/_fields/_filters/_search. Returns { meta, response }. |
get_issue | read | Get an issue (ticket) Fetch a single issue (support/service ticket). Accelo API: GET /api/v0/issues/{id}. Returns { meta, response }. |
accelo_request | read | Raw read request Power-user escape hatch: GET any Accelo API path not wrapped by a dedicated tool. READ-ONLY — only GET is allowed. Pass the FULL API path after the host, starting with a slash, INCLUDING any query string, e.g. "/api/v0/companies?_limit=1&_filters=status(1)" or "/api/v0/tasks/123". Returns { meta, response }. |
create_company | write | Create a company MUTATES Accelo data: creates a new company (client organization). Accelo API: POST /api/v0/companies (form-encoded). Returns { meta, response } with the created company. (Accelo has no separate delete tool here; to UPDATE, POST to /api/v0/companies/{id}.) |
create_contact | write | Create a contact MUTATES Accelo data: creates a new contact (a person). Accelo API: POST /api/v0/contacts (form-encoded). NOTE: a contact's company affiliation is set separately via an affiliation (POST /api/v0/contacts/{id}/affiliations), not on creation. Returns { meta, response } with the created contact. |
create_task | write | Create a task MUTATES Accelo data: creates a new task. Accelo tasks are always logged AGAINST an object (a job, company, issue, etc.), so against_type + against_id are required. Accelo API: POST /api/v0/tasks (form-encoded). Returns { meta, response }. |
create_activity | write | Create an activity (log a note/email/call) MUTATES Accelo data: logs an activity (a note, email, call, or meeting) against an object. This is the highest-value safe write — e.g. add a note/comment to a job or company. against_type + against_id say what it is logged against (required). Accelo API: POST /api/v0/activities (form-encoded). Returns { meta, response }. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.