Skip to main content
Glama

Server Details

Discover curated SaaS and AI-agent tools in the Tulimoa directory; submit and edit your listings.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Tulimoa/tulimoa-mcp
GitHub Stars
1
Server Listing
Tulimoa MCP Server

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: submit, edit, get, search, and list categories. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase with underscores, e.g., submit_listing, search_listings.

Tool Count5/5

Five tools cover the core operations of a directory server (CRUD minus delete, plus categorized search) without unnecessary bloat.

Completeness4/5

Covers create, read, update, and search. Missing delete functionality, but this may be intentional for admin-only or user unpublish actions.

Available Tools

5 tools
edit_listingEdit one of your own Tulimoa listingsAInspect

Update fields of a listing you own (by slug). You cannot change ownership or set review status. Any edit sends the listing back to admin review (status: pending) and it reappears publicly only after re-approval. Requires a write-scoped Tulimoa login.

ParametersJSON Schema
NameRequiredDescriptionDefault
mcpNo
urlNo
nameNo
slugYesSlug of YOUR listing to edit (from submit_listing).
tagsNo
categoryNo
pricing_modelNo
short_descriptionNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesListing id.
slugYes
statusYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses that edits trigger admin review and listing becomes pending, and reappears only after re-approval. It also mentions the authentication requirement. It does not cover rate limits or other side effects, but core behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, each serving a purpose: purpose, constraints/consequences, and authentication. Front-loaded with the verb and resource. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 8 parameters and low schema coverage, the description covers the key behavioral effect (review) and ownership constraint. An output schema exists but its content is not described. The description is adequate but lacks parameter detail and error handling guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 13% (only slug described). The description only generically mentions 'fields of a listing' without detailing specific parameters like name, url, tags, etc. It does not add meaning beyond the schema for most parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool updates fields of a listing the user owns, by slug. It explicitly mentions constraints like not changing ownership or review status, and distinguishes from siblings like get_listing, submit_listing, etc.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says when to use: to update your own listing. It lists constraints and consequences (admin review on edit). It implies when not to use (e.g., for viewing, use get_listing) but does not explicitly mention alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_listingGet one SaaS listingAInspect

Fetch full detail of a single Tulimoa listing by its slug: long description, features, use cases, integrations, pricing detail, and links. Use after search_listings when the user wants depth on a specific tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe listing's URL slug, e.g. 'acme-crm'.

Output Schema

ParametersJSON Schema
NameRequiredDescription
listingYesFull listing row (detail projection, see DETAIL_SELECT).
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It correctly discloses that the tool fetches full details and lists returned fields, but lacks information about potential errors, rate limits, or permissions. For a simple read operation, this is minimally adequate but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no wasted words; purpose, content, and usage guidance are front-loaded and efficiently communicated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one required parameter), presence of an output schema, and no nested objects, the description fully covers what an agent needs: what it does, what data it returns, and when to use it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a description for 'slug'. The description adds value by stating 'by its slug' and providing an example ('e.g. 'acme-crm''), going beyond the schema's bare description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Fetch full detail of a single Tulimoa listing by its slug' and enumerates the specific data fields returned (long description, features, integrations, etc.), differentiating it from sibling tools like search_listings (list) and submit_listing (create).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly advises 'Use after search_listings when the user wants depth on a specific tool,' providing clear context and a when-to-use scenario, effectively distinguishing from siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_categoriesList directory categoriesAInspect

List the category ids and labels used to classify Tulimoa listings. Call this first when you need a valid category value for search_listings.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
categoriesYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It mentions the output contains ids and labels and the use case, which is sufficient for a read-only list operation. Could explicitly note it is safe/idempotent but not required.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with purpose then usage. No superfluous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no parameters and an output schema provided, the description covers all needed context: why to use it and what it returns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so baseline is 4. The description adds value by specifying the output contents and usage context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists category ids and labels for Tulimoa listings. It uses a specific verb and resource, and the sibling tools are all listing-related, so no ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to call first when a valid category value is needed for search_listings. This provides clear when and why to use the tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_listingsSearch SaaS listingsAInspect

Find SaaS tools in the Tulimoa directory that an AI agent or team can plug into. Discover tools by topic, category, pricing, MCP support, or EU hosting. Returns only approved, published listings. Use this for any 'find/recommend a tool for X' request, then call get_listing for full detail on a specific result.

ParametersJSON Schema
NameRequiredDescriptionDefault
mcpNotrue = only tools that expose their own MCP server.
sortNoResult order. Default: popular.
limitNoMax results (1-50, default 20).
queryNoFree-text terms matched against the listing name and short description.
eu_onlyNotrue = only tools whose company country is in the EU.
categoryNoRestrict to one category id. Call list_categories for valid ids.
pricing_modelNoRestrict to a pricing model.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of results returned.
resultsYesLean listing rows; call get_listing(slug) for full detail.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It discloses that results are limited to approved, published listings and supports various filters. However, it does not mention default behavior (e.g., default sort or limit), pagination, or edge cases like empty queries. Some behavioral context is given but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficient with three concise sentences. It front-loads the purpose, lists available filters, and ends with clear usage guidance. Every sentence adds value with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main purpose, filters, and next steps for a search tool with 7 optional parameters and an output schema. It lacks details on default behavior (covered in schema) but is otherwise complete for guiding an AI agent. Minor omission of explicit mention that all parameters are optional, but schema clarifies.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with detailed descriptions for all 7 parameters, including enums. The description adds context by grouping parameters (e.g., 'topic, category, pricing, MCP support, or EU hosting') but does not provide significant additional meaning beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool finds SaaS tools in the Tulimoa directory by various filters (topic, category, pricing, MCP, EU hosting) and returns approved listings. It explicitly distinguishes itself from the sibling get_listing by advising to call it for full detail on a result.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states to use this tool for 'find/recommend a tool for X' requests and advises the next step of calling get_listing for details. This provides clear context and differentiation from editing, submitting, or listing categories.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

submit_listingSubmit a SaaS listing to the Tulimoa directoryAInspect

Create a new listing in the Tulimoa directory on behalf of the authenticated user. The listing is created with status 'pending' and appears publicly only after admin review. Requires a write-scoped Tulimoa login. Use list_categories first to pick a valid category id.

ParametersJSON Schema
NameRequiredDescriptionDefault
mcpYestrue = this tool exposes its own MCP server.
urlYesPublic homepage URL (https).
nameYesProduct/company name (max 60 chars).
tagsNoOptional descriptive tags (max 8).
countryYesISO-3166-1 alpha-2 country code of the company, e.g. DE.
categoryYesOne category id. Call list_categories for valid ids.
pricing_modelYesPricing model (required): free | freemium | paid | lifetime.
short_descriptionYesOne-line pitch (max 300 chars).

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesListing id.
slugYesFinal slug (may carry a conflict suffix).
statusYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses that the listing starts as 'pending' and requires admin review before appearing publicly. Also states the need for a write-scoped login. With no annotations, this adds valuable behavioral context beyond basic creation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences, each serving a distinct purpose: main action, lifecycle status, and prerequisite setup. No redundant or extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers creation, pending status, auth requirement, and prerequisite for category. Does not detail error states or rate limits, but with an output schema present, this is adequate for a creation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All 8 parameters are fully described in the schema (100% coverage). The description only reinforces the category parameter with a prerequisite hint. Baseline 3 is appropriate as no additional semantic detail is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the verb 'create' and resource 'listing' with context of authenticated user. It distinguishes from siblings by focusing on creation and mentions pending status, setting it apart from edit or search tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly advises to use list_categories first for valid category IDs, which is a concrete usage hint. Lacks explicit 'when not to use' or direct comparison to edit_listing, but the guidance is strong.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.