Skip to main content
Glama

Server Details

Search 47,000+ marketing agencies and get AI-matched with fitted agencies, from Pick an Agency.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Natden444/pickanagency-mcp
GitHub Stars
2
Server Listing
Pick an Agency

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.6/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: get_agency retrieves a full profile by slug, match_agencies provides recommendations based on a brief, and search_agencies lets users browse/filter the directory. There is no overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscores (get_agency, match_agencies, search_agencies). The verbs clearly indicate the action, and the nouns are uniform.

Tool Count5/5

Three tools is an appropriate number for this domain, covering the core user journeys: browsing (search), getting recommendations (match), and viewing details (get). It is neither too sparse nor excessive.

Completeness4/5

The tool set covers the primary use cases for an agency directory: search, match, and detail retrieval. A minor gap is the lack of a tool for listing services or comparing agencies, but the search and match tools handle most needs.

Available Tools

3 tools
get_agencyGet an agency profileA
Read-only
Inspect

Fetch a single agency's full profile from Pick an Agency by its slug (the last path segment of its profile URL), including description, location, rating, services, website and a few recent client reviews. WHEN TO USE: after search_agencies or match_agencies returned a result the user wants to know more about, or when the user names a specific agency whose slug you already know. Don't guess slugs - find them via search_agencies first.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesAgency slug, e.g. 'clients-now-seo-agency-chennai'.
Behavior4/5

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

Annotations already indicate readOnly, openWorld, non-destructive. Description adds behavioral details: returns full profile including description, location, rating, services, website, and recent reviews. No contradictions.

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?

Very concise: first sentence defines action, second sentence lists content, then usage guidelines in a separate section. No unnecessary 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?

No output schema, but description enumerates return fields. Single parameter fully documented. Annotations and usage guidelines complete the context. Agents have everything needed to invoke correctly.

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 provides 100% coverage with description and example. Description adds context: slug is 'the last path segment of its profile URL', which enriches meaning beyond the schema example.

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 a single agency's full profile' using a slug, specifying the exact resource and action. It distinguishes from siblings by mentioning it is used after search_agencies or match_agencies.

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 provides WHEN TO USE context: after search or match returns a result, or when slug is known. Also warns against guessing slugs, guiding to use search_agencies first.

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

match_agenciesGet matched with fitted agenciesA
Read-only
Inspect

Pick an Agency's matching engine. Given a buyer brief (services needed, location, budget, industry), returns a short ranked shortlist of agencies that best fit - the same logic behind the free 'Get Matched' tool. WHEN TO USE: when the user describes their needs/project and wants a RECOMMENDATION ('I need a social media agency in Paris, ~$5k/month'). Requires at least one service. Use search_agencies instead for open browsing/filtering without a brief; use get_agency to drill into one result afterwards.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoTarget city.
limitNoShortlist size (default 5).
budgetNoMonthly budget, e.g. '$5k-10k' or '5000'.
countryNoTarget country.
industryNoBuyer's industry, e.g. 'E-commerce'.
servicesYesServices the buyer needs, e.g. ['SEO', 'Content Marketing'].
platformsNoAd platforms, e.g. ['Meta Ads', 'Google Ads'].
Behavior4/5

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

No annotation contradictions. The description adds context beyond annotations: it mentions the tool uses the same logic as the free 'Get Matched' tool, implying output is a shortlist. Annotations already declare readOnlyHint, openWorldHint, and destructiveHint, so the safety profile is clear. The description is transparent about its behavior without needing to rehash annotations.

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 extremely concise with two sentences. The first sentence defines purpose, the second provides usage guidelines. Every word adds value; no redundancy or extra information. It is front-loaded with the key action.

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?

Despite having 7 parameters and no output schema, the description covers the input concept (brief) and output (shortlist). It mentions the requirement of at least one service. It doesn't explain ranking criteria, but the name 'matching engine' implies relevance. The description is sufficiently complete for an agent to use this tool correctly.

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 description coverage is 100%, so the schema already documents each parameter thoroughly. The description adds context by framing parameters as a 'brief' (services needed, location, budget, industry) but does not provide additional meaning beyond what the schema offers. 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's purpose: it's an agency matching engine that returns a ranked shortlist given a buyer brief. It uses specific verbs ('match', 'returns') and resource ('agencies'). It distinguishes itself from siblings (search_agencies for browsing, get_agency for drilling into one 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 provides explicit usage guidelines: 'WHEN TO USE' when user describes needs and wants a recommendation, with an example. It also specifies when not to use by naming alternative tools (search_agencies, get_agency). It notes a requirement (at least one service).

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

search_agenciesSearch marketing agenciesA
Read-only
Inspect

Search Pick an Agency's directory of 47,000+ marketing agencies. Filter by free-text query, service (e.g. SEO, paid ads, social media), country, city, industry, and minimum rating. Returns the top matches with location, rating, reviews and profile link. WHEN TO USE: for browsing or filtering ('show me SEO agencies in Berlin', 'agencies named X') when the user wants a LIST to explore. Use match_agencies instead when the user describes their project/brief and wants a RECOMMENDATION; use get_agency for full detail on one specific agency.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity, e.g. 'Berlin', 'New York'.
limitNoMax results (default 10).
queryNoFree-text search (agency name, keyword).
countryNoCountry, e.g. 'United States', 'France'.
serviceNoService, e.g. 'SEO', 'Social Media Marketing', 'Paid Advertising'.
industryNoIndustry focus, e.g. 'SaaS', 'Healthcare'.
min_ratingNoMinimum overall rating (0-5).
Behavior5/5

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

Annotations already indicate readOnlyHint and non-destructive. The description adds that it returns top matches with location, rating, reviews, and profile link, fully disclosing behavior beyond annotations.

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?

Concise and well-structured: action statement, filter list, return fields, and usage guidance. Every sentence is informative and efficiently written.

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?

Despite 7 parameters and no output schema, the description fully covers when to use, what data is returned, and explains all filters. No gaps remain.

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%, and the description lists the filters in a sentence, but adds no extra details beyond what the schema provides. 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 searches a directory of 47,000+ agencies, lists filters, and specifies returns. It distinguishes from siblings match_agencies and get_agency, making the purpose unambiguous.

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?

Includes explicit WHEN TO USE section: for browsing/filtering when a list is desired. Provides alternatives: match_agencies for recommendations, get_agency for single agency detail.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.