giftful-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@giftful-mcpAdd a wish for a cast iron skillet to my Kitchen list"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Giftful MCP
A local Model Context Protocol server for logging in to Giftful and managing lists and wishes programmatically.
What it supports
Persistent login with automatic access-token refresh
Native credential-vault storage on macOS, Windows, and Linux
Browser-based authentication for the sign-in methods offered by Giftful
List, inspect, create, patch, and soft-delete lists
Navigate accessible lists from followed friends, followers, and following
List, add, patch, reorder, and delete wishes
Claim and unclaim wishes on friends' lists
Add a product URL and let Giftful retrieve its title, price, image, and description
Create, reorder, and delete list categories
Multiple accounts through named profiles
The password is used only for the login request and is never persisted. Only Giftful's refresh token and basic user metadata are stored. Short-lived access tokens remain in memory.
Authentication is CLI-only. The MCP server never accepts a Giftful password as a tool argument, so passwords do not enter model context or tool transcripts. When login is required, giftful_auth_status returns the appropriate terminal commands.
Related MCP server: Credential Manager MCP Server
Requirements
Node.js 20 or newer
A Giftful account
Chrome, Edge, Brave, or Chromium for browser-based authentication
Install and build
npm install
npm run checkEverything required to build the server is in this project directory. Authentication data is stored separately and is never committed to the repository.
Log in securely
The recommended flow works with whichever sign-in method Giftful presents in the browser:
npm run auth -- login-browserThis opens Giftful in a temporary browser profile. Complete the normal login there using Apple or another available provider. The CLI reads only the resulting Giftful refresh credential, validates it with Giftful, saves it in your system credential vault, closes the browser, and deletes the temporary profile. It never receives your identity-provider password or verification codes. login-apple remains available as a compatibility alias.
The browser is discovered automatically. If needed, point to it explicitly with GIFTFUL_BROWSER_EXECUTABLE=/absolute/path/to/browser; the default login timeout is ten minutes and can be changed with GIFTFUL_BROWSER_LOGIN_TIMEOUT_MS.
For an email/password account, the recommended flow prompts for the password without echoing it:
npm run auth -- login YOUR_GIFTFUL_EMAILConfirm the saved session and exercise token refresh:
npm run auth -- status --validateLog out and remove the persisted session:
npm run auth -- logoutFor non-interactive automation, provide the password for that process only. It is removed from the process environment before login and is not saved:
GIFTFUL_PASSWORD='...' npm run auth -- login YOUR_GIFTFUL_EMAILAvoid putting GIFTFUL_PASSWORD in a long-lived shell profile or MCP configuration.
Connect it to Codex
Build first, then register the local stdio server using an absolute path:
codex mcp add giftful -- node /ABSOLUTE/PATH/TO/giftful-mcp/dist/index.jsRestart Codex or begin a new thread after adding it. Check registration with:
codex mcp get giftfulTo use a named account profile:
codex mcp add giftful-personal \
--env GIFTFUL_PROFILE=personal \
-- node /ABSOLUTE/PATH/TO/giftful-mcp/dist/index.jsRun the login command with the same profile:
GIFTFUL_PROFILE=personal npm run auth -- login-browser
# or, for a password account:
GIFTFUL_PROFILE=personal npm run auth -- login YOUR_GIFTFUL_EMAILThe equivalent generic MCP client configuration is:
{
"mcpServers": {
"giftful": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/giftful-mcp/dist/index.js"]
}
}
}Tools
Tool | Purpose |
| Check or validate persistent authentication |
| Revoke and remove the persistent session |
| List the authenticated user's lists |
| List accessible lists from followed friends |
| List followers without changing relationships |
| List actively followed accounts |
| Inspect a list and its settings/categories |
| Create a wishlist, registry, or personal list |
| Patch list settings without overwriting omitted values |
| Soft-delete a list; requires |
| List wishes and retrieve their IDs |
| Add manually or from a scraped product URL |
| Patch one wish |
| Move a wish after another wish or to the beginning |
| Permanently delete one wish; requires confirmation |
| Reserve a wish in Giftful; requires confirmation |
| Release a Giftful reservation; requires confirmation |
| Add a list category |
| Persist the complete category order |
| Remove a category while keeping its wishes |
Examples of natural requests after connecting:
“Show my Giftful lists.”
“Show the lists belonging to people I follow.”
“List the people I follow, then show Alice's available wishes.”
“Reserve wish 12345 for me.”
“Add this URL to my Christmas list and mark it most desired.”
“Rename my
christmas-2026list and make link viewing private.”“Change wish 12345 to quantity 2.”
“Move wish 12345 to the top of my birthday list.”
“Put the Books category before Games.”
Giftful stores one list-wide relative order for wishes and a separate order for categories. When wishes are grouped for display, category order takes precedence; wishes inside each category retain their relative list-wide order. giftful_reorder_wish moves one wish after another (or to the global beginning), while giftful_reorder_categories accepts the complete category ID order.
Claiming is Giftful's reservation mechanism: it tells other Giftful users that the
item is being handled. It does not place an order, charge a payment method, or buy
anything from the linked retailer. Claim and unclaim both require confirm=true.
The social tools are intentionally read-only; this MCP cannot find, follow,
unfollow, accept, decline, remove, or otherwise modify social relationships.
Authentication storage
The default GIFTFUL_AUTH_STORAGE=auto uses the operating system's protected credential vault:
macOS: Keychain item under service
com.giftful-mcp.sessionWindows: Credential Manager
Linux: Secret Service (normally backed by GNOME Keyring or KDE Wallet)
Overrides:
GIFTFUL_AUTH_STORAGE=system
GIFTFUL_AUTH_STORAGE=file
GIFTFUL_AUTH_FILE=/safe/absolute/path/session.json
GIFTFUL_PROFILE=workSystem storage is the recommended cross-platform choice. On a headless Linux machine without Secret Service, opt into file storage explicitly. Its live refresh token is plaintext protected by filesystem permissions; the directory is mode 0700 and the file mode 0600. Keep it outside repositories and untrusted backups.
Development
npm run dev # start stdio server from TypeScript
npm run typecheck
npm test
npm run build
npm run check:live-schema # validates operations against Giftful; does not log in or write data
npm run check # all of the above verification except devTests mock Giftful login, refresh, social, and claim responses; they never require or mutate a real account. A live account smoke test is intentionally left to the owner because create/edit/delete and claim operations affect real lists.
Compatibility
This is an independent community project and is not affiliated with or endorsed by Giftful. Changes to Giftful may occasionally require a corresponding update here.
If Giftful changes its schema or authentication flow, errors are surfaced without deleting a valid saved session for ordinary network failures; sessions are cleared only when Giftful explicitly rejects the refresh credential.
License
MIT © 2026 Matthew Pulsipher.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceA unified MCP server with composable tools for GitHub operations, file management, shell execution, kanban boards, Discord messaging, and package management. Features role-based security, HTTP/stdio transports, and a web-based development UI.Last updated
- Alicense-qualityCmaintenanceA secure MCP server for local API credential management using JSON storage and a read-only default mode. It allows users to list, retrieve, and manage credentials via simple command-line tools and environment-based configuration.Last updatedMIT

@formegifts/mcpofficial
FlicenseAqualityCmaintenanceMCP server for the forme.gifts wishlist app that enables managing wishlists and gifts from Claude Code, Claude Desktop, Cursor, and other MCP clients.Last updated1062- Alicense-qualityCmaintenanceA secure, git-aware MCP server for working with local repositories, enabling file management, shell commands, and full git operations within allowed directories.Last updated4321GPL 3.0
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/matt-pulsipher/giftful-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server