Stella Maris

Stella Maris





Website: https://stellamaris.org.uk/
Get Help: https://stellamaris.org.uk/get-help/ (access via the provider's "Get Help" section)
Find a Chaplain: https://stellamaris.org.uk/find-a-chaplain/
Contact Page: https://stellamaris.org.uk/contact/ 

What this organisation does

Stella Maris is an international maritime welfare charity supporting seafarers and fishers around the world. It is one of the largest ship-visiting networks globally and works through chaplains, ship visitors, seafarer centres, advocacy services and welfare support programmes.
The organisation helps seafarers and fishers facing a wide range of personal, practical, welfare and wellbeing challenges. Support is available regardless of nationality, faith or background. Through its network of chaplains and welfare teams, Stella Maris provides direct assistance in ports and on board vessels, helping maritime workers who may be far from home and dealing with difficult circumstances. 

Who can use the service

The service is intended for:
  • Seafarers working on merchant, cargo, passenger and other commercial vessels. 
  • Fishers and fishing crews. 
  • Maritime workers requiring welfare, practical, pastoral or advocacy support. 
  • Family members seeking guidance related to a seafarer or fisher's welfare needs. (Availability may depend on the nature of the enquiry.) 
Support is available through a network operating in hundreds of ports across multiple countries.

Support available

Depending on local availability and individual circumstances, Stella Maris may provide:
  • Ship visits by trained chaplains and welfare visitors. 
  • Practical support for seafarers and fishers experiencing difficulties while away from home. 
  • Welfare guidance and information. 
  • Advocacy on issues affecting maritime workers. 
  • Emotional, pastoral and spiritual support where requested.
  • Access to local seafarer centres and welfare facilities in participating ports. 
  • Assistance for crews experiencing challenging situations such as abandonment, isolation or other welfare concerns. 
The charity reports assisting large numbers of seafarers and fishers annually through port-based and onboard support activities. 

Features and benefits

Using Stella Maris may help seafarers and fishers to:
  • Access welfare support while in port or at sea. 
  • Speak confidentially with experienced maritime welfare staff and chaplains. 
  • Obtain practical assistance when facing personal or work-related difficulties. 
  • Connect with local support services and facilities. 
  • Receive advocacy and guidance during welfare disputes or challenging circumstances. 
  • Reduce feelings of isolation through personal contact and support networks. 
  • Access support close to major ports through an extensive international network. 

How to get help

  1. Visit the Stella Maris website. 
  2. Select Get Help to access support information and welfare assistance. 
  3. Use Find a Chaplain to locate the nearest chaplain or port-based representative.
  4. Contact the relevant local chaplain, seafarer centre or welfare team. 
  5. If your situation is urgent, explain your circumstances clearly so the team can direct you to the most appropriate support. (Availability may vary by location.) 

Things to check before contacting them

  • Have details of your vessel, port location and expected arrival or departure dates available if relevant.
  • Be prepared to explain the welfare issue or support you require.
  • Check whether a local chaplain or seafarer centre operates in your current port.
  • Review the provider's contact information and service availability for your location before travelling.

  • Home: https://stellamaris.org.uk/ 
  • Get Help: https://stellamaris.org.uk/get-help/ 
  • Find a Chaplain: https://stellamaris.org.uk/find-a-chaplain/
  • Contact: https://stellamaris.org.uk/contact/ 
  • About Stella Maris: https://stellamaris.org.uk/about-us/ 
  • News and Resources: https://stellamaris.org.uk/news-resources/ 
  • Safeguarding Policy: https://stellamaris.org.uk/safeguard

    • Related Articles

    • Stella Maris

      Charity Number: 1069833 Contact: Tim Hill MBE Address: 39 Eccleston Square ,London. Postcode: SW1V 1BX Phone: 020 7901 1931 Website: www.stellamaris.org.uk Email: info@stellamarismail.org Summary: Stella Maris is a Catholic charity supporting ...
    • Seafarers’ Christian Friend Society (SCFS)

      Contact details Website: https://scfs.org Head Office Address: Ch18 Colvin House, Inspire Business Park, 16 Carrowreagh Road, Dundonald, Belfast, BT16 1QT Telephone: +44 28 9521 7770 Email: headquarters@scfs.org Contact page: ...
    • The Mission to Seafarers

      Website: The Mission to Seafarers Contact page: Contact The Mission to Seafarers Global coverage: More than 200 ports across 50 countries. What this organisation does The Mission to Seafarers is an international maritime welfare charity that supports ...
    • Liverpool Seafarers Centre

      Contact Details Website: https://liverpoolseafarerscentre.org/ Address: Liverpool Seafarers Centre, 20 Crosby Road South, Liverpool, L22 1RQ, United Kingdom. UK Telephone: 0300 800 8080. International Telephone: +44 300 800 8080. Email: ...
    • The Mission to Seafarers

      Website: https://www.missiontoseafarers.org/ Head Office Address: 1st Floor, 6 Bath Place, Rivington Street, London, EC2A 3JE, United Kingdom. Contact a Chaplain: https://www.missiontoseafarers.org/contact-a-chaplain Port Directory: ...
    (function () { 'use strict'; // Only run on the KB root page if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return; var CATEGORY_ID = '233149000000358041'; var MAX_WAIT_MS = 10000; var POLL_INTERVAL_MS = 200; var elapsed = 0; function getStore() { if (window.reduxStore) return window.reduxStore; if (window._store) return window._store; var all = document.querySelectorAll('*'); for (var i = 0; i < all.length; i++) { var keys = Object.keys(all[i]); for (var j = 0; j < keys.length; j++) { if (keys[j].indexOf('__reactContainer') === 0) { try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {} } } } return null; } function getPortalId() { var resources = window.performance.getEntriesByType('resource'); for (var i = 0; i < resources.length; i++) { var m = resources[i].name.match(/portalId=([^&]+)/); if (m) return m[1]; } return null; } var timer = setInterval(function () { elapsed += POLL_INTERVAL_MS; if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; } var store = getStore(); if (!store) return; var kb = store.getState().KBUIState; if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return; if (!kb.isNext) { clearInterval(timer); return; } clearInterval(timer); var portalId = getPortalId(); if (!portalId) return; var base = window.location.origin + '/portal/api/kbCategory/' + CATEGORY_ID + '/articles?portalId=' + portalId; Promise.all([ fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }), fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); }) ]).then(function (results) { var sections = Object.values(results[0].data).concat(Object.values(results[1].data)); if (!sections.length) return; store.dispatch({ type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS', data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 } }); }).catch(function () {}); }, POLL_INTERVAL_MS); })();