epinu
Server Details
Agent-first marketplace for industrial assets & livestock medianería; humans approve every write.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- CMS87/epinu-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.3/5 across 5 of 5 tools scored. Lowest: 3.6/5.
The search tools (search, projects_search, marketplace_listings_search) overlap significantly—search is explicitly an 'additive alias' over the other two, making them partially redundant. fetch, getting_started, and marketplace_listings_search are fairly distinct, but the search trio creates ambiguity about which to call for a given query.
Mixed conventions: projects_search and marketplace_listings_search follow verb_noun, but search, fetch, and getting_started are single words/varied patterns. Names are descriptive enough but lack a uniform verb_noun structure across the whole set.
Five tools is a reasonable size for a search/discovery-oriented server. The count feels slightly thin given the mention of several underlying operations (projects_get_deep_dive, marketplace_listing_get), but it's within a sensible scope for the apparent purpose.
Read-side coverage is decent: search, detail-fetch, and overview docs are all present. However, the server references get_deep_dive and get operations that aren't directly exposed as standalone tools, and there's no way to perform any writes/updates, leaving the surface feel like incomplete proxies for a broader API.
Available Tools
5 toolsfetchFetchAInspect
Fetch the full document for one search result by its opaque id (project: or listing:). Returns { id, title, text, url, metadata }. Available without a token; public data only. Wraps projects_get_deep_dive and marketplace_listing_get. Unknown or malformed ids return a clean not-found.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| text | Yes | |
| title | Yes | |
| metadata | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses return fields, authentication (public data), internal endpoint wrapping, and error handling for unknown IDs. Lacks rate limits, but as a read-only fetch this is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence provides value: purpose, id format, return shape, auth, internal wrapping, error behavior. No wasted words, front-loaded with the action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no annotations, the description covers input, output, auth, and edge cases. Output schema exists but is not needed since return is described. Complete for correct tool selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema coverage, the description adds meaning by specifying the id format ('project:<uuid> or listing:<uuid>') and its source. This is essential context beyond the schema's generic string type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'Fetch' and the resource 'full document for one search result by its opaque id'. It distinguishes from sibling search tools which return summaries, making its purpose unique.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (have an opaque id from search) and that it's public (no token needed). Implicitly guides away from search tools, but doesn't explicitly mention alternatives for when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getting_startedGetting StartedAInspect
Start here: platform overview, the proposal/approval operating model, auth rules, common flows, and agent etiquette. Static content — requires no scopes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| auth | Yes | |
| docs | Yes | |
| welcome | No | |
| platform | Yes | |
| etiquette | Yes | |
| common_flows | Yes | |
| field_limits | Yes | |
| operating_model | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description bears full responsibility. It states the content is static and requires no scopes, clearly indicating a read-only, safe operation with no authentication burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise: two sentences with no wasted words. Key information is front-loaded with 'Start here.'
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple static overview tool with zero parameters and an output schema, the description fully captures what the agent needs to know: it's the entry point with no side effects.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, and schema coverage is 100%. The description adds value by clarifying the content is static and introductory, exceeding the baseline expectation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it's a starting point for platform overview, operating model, auth rules, flows, and etiquette. It distinguishes itself from search or fetch tools by its introductory nature.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
"Start here" explicitly tells agents to use this first. It doesn't explicitly say when not to use, but the context of it being static overview makes it obvious it's not for data retrieval.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplace_listings_searchMarketplace Listings SearchAInspect
Search the Epinu marketplace for equipment, services, and assets. Returns summaries only; call marketplace_listing_get for detailed packets.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| cursor | No | ||
| category | No | ||
| maxPrice | No | ||
| subcategory | No | ||
| availabilityType | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes | |
| next_cursor | Yes | |
| total_returned | Yes | |
| dropped_invalid_count | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It notes the summary-only return behavior and references pagination indirectly via the cursor parameter, but does not state rate limits, auth requirements, result ordering, or whether maxPrice/availabilityType affect filtering in any way the schema doesn't already imply. The summary-only distinction is genuinely valuable but largely the whole of its behavioral content.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. The first sentence states the core purpose and scope; the second delivers critical behavioral guidance (summary-only + pointer to the detail tool). Extremely efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
An output schema exists, so return values need no explanation. However, with 7 parameters at 0% schema description coverage, no annotations, and no parameter-level context, the description leaves the agent to guess about availabilityType semantics, subcategory usage, and cursor pagination details. This creates a moderate completeness gap despite the good summary-vs-detail flow guidance.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and there are 7 parameters with none required, so the description must compensate. It does establish the marketplace domain that gives query/category/subcategory meaning, but it provides no parameter-specific context — no explanation of what 'category' vs 'subcategory' mean, what 'availabilityType' values are valid, or how maxPrice interacts. The marketplace framing adds context beyond the bare schema but doesn't meaningfully document individual parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource ('Search the Epinu marketplace') with an explicit scope (equipment, services, assets). Distinguishes from siblings by establishing this is the marketplace search, separate from projects_search, and by naming the companion detail tool (marketplace_listing_get). Falls just short of 5 because it doesn't enumerate the full breadth of categories beyond the three listed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear when-to-use context by stating it returns summaries only and directing callers to marketplace_listing_get for detailed packets, establishing a complementary search-then-fetch flow. However, it doesn't explicitly state when NOT to use it or compare against the other sibling search tools (search, projects_search), so exclusions are absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
projects_searchProjects SearchAInspect
Search Epinu real-asset projects. Returns bounded summaries only; call projects_get_deep_dive for detailed packets. Results include public projects plus the token owner's own archived, draft, or unpublished projects for duplicate checks; another owner's unpublished projects are never returned. Available without a token for public results only.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| cursor | No | ||
| status | No | ||
| min_roi | No | ||
| asset_type | No | ||
| max_funding_goal | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | |
| projects | Yes | |
| next_cursor | Yes | |
| dropped_invalid_count | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full transparency burden, and it delivers well. It discloses that results are bounded summaries only, that the token owner's own non-public projects are included for duplicate checks, that others' unpublished projects are excluded, and that return behavior changes without a token. This is rich behavioral context with no annotation to rely on.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with the core purpose, no filler. Every sentence adds distinct value: what it returns, how scoping works, and access behavior. Zero wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 7 filter parameters, an output schema present, and no required parameters, the description covers purpose, scoping semantics, access behavior, and the alternative for detail. The presence of the output schema reduces the need to explain return values. The main minor gap is per-parameter semantics, but field names are largely self-explanatory.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the 7 undocumented parameters. The description does not enumerate the parameters explicitly, but it conveys the search's overall semantics (public plus owner's non-public scope, bounds on output). However, it doesn't add per-parameter meaning for limit, cursor, status, min_roi, asset_type, or max_funding_goal beyond what field names imply.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states what the tool does: search Epinu real-asset projects. It distinguishes itself from siblings by explicitly naming the alternative tool projects_get_deep_dive for detailed packets and clarifying the bounded-summary nature. This is a specific verb+resource+scope statement that differentiates from sibling marketplace_listings_search and search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides strong usage guidance: when the same owner searches, archived/draft/unpublished projects are included for duplicate checks, while another owner's unpublished projects are never returned. It also clarifies access behavior (available without a token for public results only), and points to projects_get_deep_dive as the alternative for detailed data. This is explicit when/when-not context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchSearchAInspect
Unified read-only search across public Epinu projects and marketplace listings. Returns { id, title, url } results; call fetch with a returned id for the full document. Available without a token; public data only. Additive alias over projects_search and marketplace_listings_search.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and clearly states read-only, public data, and no token requirement. It also describes the return format. It does not mention pagination or rate limits, but for a simple search tool this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at three sentences, front-loads the purpose, and each sentence adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single parameter, existence of an output schema, and no annotations, the description covers scope, availability, and follow-up actions. It could mention result limits or ordering, but overall it provides sufficient context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description should compensate by explaining the 'query' parameter. It only implies a text search without providing any semantics or syntax guidance, which is insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it is a unified read-only search across public Epinu projects and marketplace listings, distinguishing it from sibling tools like projects_search and marketplace_listings_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains it is a unified search that can be used without a token, and that results can be followed up with fetch. It implicitly provides context on when to use this tool over the individual search tools, though it lacks explicit when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseCqualityBmaintenanceThe trust-and-settlement rails of the agent economy: identity, trust, escrow, metering, arbitration, compute-carbon ledger, covenant, provenance, offsets, ERC-8004 bridge, surety, notary, and discovery — plus sellable measurement/CAD services. Durable, machine-checkable invariants, free rails.100
- MIT
- Flicense-qualityDmaintenanceAn agent-native marketplace API where any agent can publish allocatable resources, search for what they need, negotiate structured offers, and exchange contact details after mutual acceptance. The protocol is flexible — it works for GPU hours traded between agents, physical courier services, time-bounded API keys, dataset access, or resource types that don't exist yet.1
- Alicense-qualityAmaintenanceLocal-first AI agent for approval-gated automation and verifiable LLM workflows.1MIT