One button. One person.
Zero small talk.
Miss U More does exactly one thing: it tells the person you miss that you're thinking of them. No feed, no likes, no group chat that needs managing. You tap. They know.
How it works
-
1
Name your person. One email address. Exactly one — that's the whole point.
-
2
They name you back. When you've named each other, you both light up green. Nobody gets notified by a stranger, ever.
-
3
Tap the button. They get it right away — on their phone, their desktop, their browser. Then they tap back, and now it's a contest.
Or just call the API
Underneath all of it, missing someone is one authenticated POST. Mint a token in the app under Settings → Assistants (MCP), send it as a bearer header, and you have an SDK in whatever language you already have open.
curltwo endpoints, one bearer header
# the score, connection and cooldown
curl https://app.missu.fyi/v1/me/status \
-H "Authorization: Bearer $MISSU_TOKEN"
# press the button
curl -X POST https://app.missu.fyi/v1/missu \
-H "Authorization: Bearer $MISSU_TOKEN" \
-H "Content-Type: application/json" \
-d '{"source":"api"}'
Pythonrequests.post(..., headers={"Authorization": ...})
import os, requests
r = requests.post(
"https://app.missu.fyi/v1/missu",
headers={"Authorization": f"Bearer {os.environ['MISSU_TOKEN']}"},
json={"source": "api"},
)
print(r.json()["status"]["miss"])
The connector also speaks MCP for chatbots: Miss U More MCP Connector.
Where you can get it
The button is on the web, in the browser stores, and in the desktop tray.
Right here, in your browserInstalls to your home screen or dock like a real appAvailable
Open the app and install it to your home screen or dock.