I'll give you my two cents, just in case.
1. With shapes.misc library
\begin{tikzpicture}
\node[
draw,
rounded corners=3pt,
minimum width=3cm,
minimum height=2cm,
rounded rectangle,
rounded rectangle left arc=none,
font=\sffamily\Large] {Hello};
\end{tikzpicture}

2. With a pic and manually inserted anchors
\begin{tikzpicture}
\tikzset%
{
pin/.style={Circle[]-,red},
rectell/.pic={
\draw (0,0.5*3) coordinate(-north) -| (-0.5*5,0) coordinate(-west) |- (0,-0.5*3) coordinate(-south) arc(-90:0:0.5*5 cm and 0.5*3 cm) coordinate(-east) arc(0:90:0.5*5 cm and 0.5*3 cm) -- cycle;
\node (-center) at (0,0) {#1};
}
}
\draw (0,0) pic(A){rectell={\sffamily\Huge Hello}};
\draw[pin] (A-center.center) --++ (3,3) node[above] {A-center};
\draw[pin] (A-north) --++ (-1,1) node[above] {A-north};
\draw[pin] (A-west) --++ (-1,1) node[above] {A-west};
\draw[pin] (A-south) --++ (-1,-1) node[below] {A-south};
\draw[pin] (A-east) --++ (1,1) node[above] {A-east};
\end{tikzpicture}

Complete code with preamble:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta,shapes.misc}
\begin{document}
\begin{tikzpicture}
\node[
draw,
rounded corners=3pt,
minimum width=3cm,
minimum height=2cm,
rounded rectangle,
rounded rectangle left arc=none,
font=\sffamily\Large] {Hello};
\end{tikzpicture}
\bigskip
\begin{tikzpicture}
\tikzset%
{
pin/.style={Circle[]-,red},
rectell/.pic={
\draw (0,0.5*3) coordinate(-north) -| (-0.5*5,0) coordinate(-west) |- (0,-0.5*3) coordinate(-south) arc(-90:0:0.5*5 cm and 0.5*3 cm) coordinate(-east) arc(0:90:0.5*5 cm and 0.5*3 cm) -- cycle;
\node (-center) at (0,0) {#1};
}
}
\draw (0,0) pic(A){rectell={\sffamily\Huge Hello}};
\draw[pin] (A-center.center) --++ (3,3) node[above] {A-center};
\draw[pin] (A-north) --++ (-1,1) node[above] {A-north};
\draw[pin] (A-west) --++ (-1,1) node[above] {A-west};
\draw[pin] (A-south) --++ (-1,-1) node[below] {A-south};
\draw[pin] (A-east) --++ (1,1) node[above] {A-east};
\end{tikzpicture}
\end{document}
EDIT: A PARAMETRIC PIC USED AS A NODE
If you want to draw a pic node and choose width and height, you can pass those parameters as arguments to the pic whan you call it.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
\tikzset%
{
pin/.style={Circle[]-,red},
%
pics/rectell/.style args={#1/#2/#3}{code = {
\draw (0,0.5*#3) coordinate(-north) -| (-0.5*#2,0) coordinate(-west) |- (0,-0.5*#3) coordinate(-south) arc(-90:0:0.5*#2 cm and 0.5*#3 cm) coordinate(-east) arc(0:90:0.5*#2 cm and 0.5*#3 cm) -- cycle;
\coordinate (-center) at (0,0) node {#1};
}}
}
\draw (0,0) pic(A){rectell={\sffamily\Huge Width 7 Height 3}/7/3};
\draw[pin] (A-center) --++ (3,2) node[above] {A-center};
\draw[pin] (A-north) --++ (-1,1) node[above] {A-north};
\draw[pin] (A-west) --++ (-1,1) node[above] {A-west};
\draw[pin] (A-south) --++ (-1,-1) node[below] {A-south};
\draw[pin] (A-east) --++ (1,1) node[above] {A-east};
\draw (0,-6) pic{rectell={\sffamily\Huge W 4 H 5}/4/5};
\end{tikzpicture}
\end{document}

rounded reectanglefrom theshapes.misctikzlibrary? It's not elliptical, but it could fit your need. If not, you may try by drawing a pic and putting nodes on it. It's quite tedious but depending on what you need to use your node for, it could be a good idea. Please be more specific about your goal, so that we could help you. – SebGlav Apr 21 '21 at 10:46nodedoes, especially anchors. But depending on how you want to link these nodes, you can manage to create anchors in a pic. – SebGlav Apr 21 '21 at 11:55