pickanagency
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.
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.5/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: browsing/filtering, matching based on brief, and fetching full profile. Descriptions clearly differentiate when to use each, leaving no ambiguity.
All three tool names follow the consistent verb_noun pattern (get_agency, match_agencies, search_agencies) using snake_case, making them predictable and easy to understand.
Three tools is on the lower end but appropriately covers the core workflow of agency discovery: searching, matching, and retrieving details. No tools are missing for the apparent scope.
The tool set covers the main user flow (search, match, get detail) for an agency directory. Minor gaps like listing all services or updating entries exist but are likely out of scope.
Available Tools
3 toolsget_agencyGet an agency profileARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Agency slug, e.g. 'clients-now-seo-agency-chennai'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the description does not need to repeat safety traits. It adds value by listing return fields and emphasizing read-only nature implicitly. No contradictions; minor gap in explaining that it requires valid slug.
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 two sentences plus a usage note, all front-loaded. Every sentence serves a purpose: action, output, when to use, and caution against guessing. No fluff.
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 get-by-slug tool with one parameter and no output schema, the description sufficiently covers what the tool does, what it returns, and prerequisites (knowing slug from search). The usage note addresses the main ambiguity.
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?
The single parameter 'slug' has full schema coverage at 100%. Description adds meaning by defining slug as 'the last path segment of its profile URL' and providing an example. This helps the agent understand the parameter format beyond the schema description.
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 'Fetch a single agency's full profile' and specifies the input (slug) and output fields (description, location, rating, services, website, reviews). It distinguishes from siblings by focusing on a single agency vs search/matching.
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: after search_agencies or match_agencies...' and warns 'Don't guess slugs - find them via search_agencies first.' Provides clear context for when to invoke this tool.
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 agenciesARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Target city. | |
| limit | No | Shortlist size (default 5). | |
| budget | No | Monthly budget, e.g. '$5k-10k' or '5000'. | |
| country | No | Target country. | |
| industry | No | Buyer's industry, e.g. 'E-commerce'. | |
| services | Yes | Services the buyer needs, e.g. ['SEO', 'Content Marketing']. | |
| platforms | No | Ad platforms, e.g. ['Meta Ads', 'Google Ads']. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, and openWorldHint=true, so the description is not required to cover safety. The description adds value by explaining the matching logic (same as free 'Get Matched' tool) and that it returns a ranked shortlist, providing behavioral context 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with three clear sections: what it does, WHEN TO USE, and alternatives. Every sentence adds value, though it could be slightly more streamlined. Overall, efficient and well-structured.
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 tool's complexity (matching engine with multiple parameters), the description provides sufficient context: purpose, usage, requirements, and connection to other tools. No output schema exists, but the description states it returns a shortlist, which is adequate. Minor gap: no mention of how results are returned or potential edge cases like no matches.
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 coverage is 100% with all parameters described. The description briefly mentions 'services needed, location, budget, industry' but does not add new semantic details beyond the schema. Therefore, baseline 3 is appropriate.
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 the tool is a matching engine that returns a ranked shortlist of agencies given a buyer brief. It distinguishes from siblings by naming alternatives for browsing (search_agencies) and drilling down (get_agency).
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?
Explicit WHEN TO USE section specifies the scenario (user describes needs, wants recommendation) and gives a concrete example. It also clearly states prerequisites (at least one service) and when to use sibling tools instead, providing complete usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_agenciesSearch marketing agenciesARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City, e.g. 'Berlin', 'New York'. | |
| limit | No | Max results (default 10). | |
| query | No | Free-text search (agency name, keyword). | |
| country | No | Country, e.g. 'United States', 'France'. | |
| service | No | Service, e.g. 'SEO', 'Social Media Marketing', 'Paid Advertising'. | |
| industry | No | Industry focus, e.g. 'SaaS', 'Healthcare'. | |
| min_rating | No | Minimum overall rating (0-5). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false; the description adds context about return fields (location, rating, reviews, profile link) and the directory size, enhancing transparency 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with clear opening, filter list, and usage guide in caps. Slightly verbose but front-loaded and every sentence adds value.
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 7 parameters all described in schema, no output schema, and annotations present, the description adds directory size, return field details, and usage guidance. Minor omission: no mention of default sort order.
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 coverage is 100%, so baseline is 3. Description mentions some filter types but does not add substantial new meaning beyond what the schema already provides.
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 uses specific verb+resource ('Search Pick an Agency's directory') and distinguishes itself from siblings by stating when to use search_agencies vs match_agencies or get_agency.
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' for browsing/filtering, and contrasts with match_agencies for recommendations and get_agency for specific agency details.
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
- Alicense-qualityDmaintenanceSearch PR agencies, browse publications, buy press release distribution & media placements. Zero-config, no API key needed.15MIT
- Alicense-qualityDmaintenanceA search engine for AI agents that enables searching, comparing, and discovering over 500 businesses across 112 categories with structured pricing data. It allows users to filter listings by price, category, and country to find and analyze specific business services.8MIT
- AlicenseAqualityFmaintenanceUniversal search engine for AI agents. Discover products, services, and businesses across every category. 10 MCP tools, zero LLM calls, millisecond responses.114AGPL 3.0
- Flicense-qualityCmaintenanceSearches and analyzes competitor ads and content across Meta, Google, Instagram, TikTok, and YouTube with AI-powered creative analysis and cross-platform brand discovery.1
Your Connectors
Sign in to create a connector for this server.