Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FEEDBIN_EMAILYesYour Feedbin account email
FEEDBIN_PASSWORDYesYour Feedbin account password

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_subscriptionsA

List all feed subscriptions in the Feedbin account.

Returns a list of subscriptions, each with:

  • id: subscription id

  • feed_id: the associated feed id

  • title: feed title

  • feed_url: the RSS/Atom feed URL

  • site_url: the website URL

  • created_at: when the subscription was added

get_feedC

Get details for a specific feed by its feed_id.

Args: feed_id: The numeric feed ID.

get_unread_entriesA

Get unread article entries from Feedbin.

Returns a page of unread entries, each with fields like: id, feed_id, title, author, summary, url, published, created_at.

Args: page: Page number (default 1). per_page: Number of entries per page, max 100 (default 50).

get_read_entriesA

Get read (already-read) article entries from Feedbin.

Returns a page of read entries. Useful for reviewing recently-read articles.

Args: page: Page number (default 1). per_page: Number of entries per page, max 100 (default 50).

get_starred_entriesA

Get starred (bookmarked) article entries from Feedbin.

Starred entries are articles the user has explicitly saved/bookmarked.

Args: page: Page number (default 1). per_page: Number of entries per page, max 100 (default 50).

get_entriesA

Get article entries with optional filters.

Returns entries matching the provided filters.

Args: page: Page number (default 1). per_page: Number of entries per page, max 100 (default 50). since: Only return entries created after this ISO 8601 datetime, e.g. "2024-01-01T00:00:00.000000Z". feed_id: If non-zero, only return entries from this specific feed. ids: Comma-separated list of specific entry IDs to retrieve (max 100).

get_entryA

Get the full details of a single entry by its ID.

Returns complete entry data including content (full HTML body).

Args: entry_id: The numeric entry ID.

get_unread_entry_idsA

Get the list of all unread entry IDs.

Returns a flat array of integer entry IDs that are currently unread. More efficient than fetching full entries when you just need counts or IDs.

mark_entries_readC

Mark one or more entries as read.

Args: entry_ids: List of entry IDs to mark as read.

mark_entries_unreadA

Mark one or more entries as unread.

Args: entry_ids: List of entry IDs to mark as unread.

get_starred_entry_idsA

Get the list of all starred entry IDs.

Returns a flat array of integer entry IDs that are currently starred. More efficient than fetching full entries when you just need counts or IDs.

star_entriesC

Star (bookmark) one or more entries.

Args: entry_ids: List of entry IDs to star.

unstar_entriesC

Unstar (remove bookmark from) one or more entries.

Args: entry_ids: List of entry IDs to unstar.

get_tagsA

Get all tags used to organise subscriptions in the Feedbin account.

get_taggingsA

Get all taggings — the mapping of which feeds belong to which tags.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

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/hypermoose/FeedbinMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server