elc-toolkit
Server Details
Leadership-ratio benchmark, partnership ROI builder, community-launch readiness test. ELC data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- marian-kamenistak/elc-toolkit
- 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.4/5 across 3 of 3 tools scored.
Each tool addresses a completely distinct domain: launching a meetup, benchmarking leadership ratios, and building a partnership case. There is zero overlap in purpose or output.
All three tools use a clear verb_noun snake_case pattern: assess_*, benchmark_*, build_*. The naming is uniformly descriptive and predictable.
Three tools is within the ideal 3-15 range and each serves a substantial, non-redundant function. The scope is tightly focused on ELC's core offerings.
The set covers the main decision-support needs for community launch, org benchmarking, and partnership pitching. Minor gaps might include a general stats tool or event planning, but the core lifecycle is adequately covered.
Available Tools
3 toolsassess_community_launch_readinessCommunity launch readiness test — should you start a local meetup?ARead-onlyIdempotentInspect
Answers 'should I start an engineering-leadership meetup in my city?' using ELC's own new-city launch playbook (the real doc used to launch Brno, Bratislava and Kraków) as the checklist: speaker network, promo channels, a named local operator, realistic first-event targets, and a promo budget. Call without answers to get the 5 questions; call with all 5 to get a verdict plus the specific open gaps.
| Name | Required | Description | Default |
|---|---|---|---|
| answers | No | Answers keyed by dimension id, true/false. Valid keys: speaker_network, promo_channels, local_operator, realistic_targets, promo_budget. Omit to receive the 5 questions first. |
Output Schema
| Name | Required | Description |
|---|---|---|
| report | Yes | The full human-readable report. |
| source | Yes | Canonical engineeringleaders.io page this answer is derived from. |
| verdict | No | Headline verdict, when the tool returns one. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnly/idempotent annotations, the description discloses the tool is checklist-based, specifies the five checklist items (speaker network, promo channels, local operator, realistic targets, promo budget), and describes the conditional output flow (questions vs verdict + gaps). This adds meaningful behavioral context about how the tool behaves across invocations. No contradiction with 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?
Two sentences, front-loaded with the core purpose, and every clause carries relevant information. The structure clearly separates the answer to the question, the checklist source, and the two-call behavior.
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 optional nested answers parameter and the presence of an output schema, the description covers both call patterns, the checklist dimensions, and the nature of the output (verdict + gaps). It is complete enough for an agent to invoke correctly without additional documentation.
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 description maps the five valid answer keys to human-readable checklist items (e.g., 'speaker network' → speaker_network) and clarifies that omitting answers returns questions while providing all five returns a verdict. This adds functional meaning beyond the schema's key enumeration, especially the two-mode semantics.
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 opens with a clear question-answer framing ('should I start an engineering-leadership meetup?') and names the specific resource (ELC's new-city launch playbook) and the checklist domains. It clearly distinguishes from sibling tools (benchmark_leadership_ratio, build_partnership_business_case) by focusing on launch readiness assessment.
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 explicitly describes two invocation modes: calling without answers to receive the 5 questions, and calling with all 5 to get a verdict plus open gaps. This tells the agent exactly when to use the tool and what to expect. It doesn't explicitly contrast with siblings, but the purpose is distinct enough that no confusion is likely.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
benchmark_leadership_ratioEngineering org leadership-ratio benchmarkARead-onlyIdempotentInspect
Compares a company's manager-vs-senior-IC split against the ELC community's own composition (69% Manager+/Leadership, 21% Senior/Staff IC, computed from 3,100+ CEE engineering leaders). Both counts are for the SAME population — senior people who could plausibly hold a management role (managers, tech leads, senior/staff ICs); leave out junior/mid ICs on both sides so the comparison is apples to apples. Returns each side's percentage, the delta from the peer baseline, and a verdict.
| Name | Required | Description | Default |
|---|---|---|---|
| managers | Yes | Count of people in Manager+/Leadership roles | |
| senior_ics | Yes | Count of Senior/Staff-level individual contributors (not junior/mid) |
Output Schema
| Name | Required | Description |
|---|---|---|
| report | Yes | The full human-readable report. |
| source | Yes | Canonical engineeringleaders.io page this answer is derived from. |
| verdict | No | Headline verdict, when the tool returns one. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (read-only, idempotent, non-destructive), the description adds the computation logic, the exact baseline values, and the requirement that inputs be from the same population. It also specifies the returned metrics (percentages, delta, verdict). This gives the agent a clear model of behavior without needing runtime introspection.
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 cover the main action, the input caveat, and the output format. It's dense but every clause adds useful information, and the most important verb ('Compares') is 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?
With a full schema, read-only annotations, and an output schema, the description completes the picture by specifying the input population definition and the output elements. There is no missing context 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents both parameters with descriptions, but the description enriches semantics by explaining the crucial relationship between them (same population, no junior/mid ICs) and the baseline context. This goes beyond the schema's individual field descriptions.
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 opens with a specific verb 'Compares' and identifies the resource (leadership-ratio benchmark). It gives the baseline composition and expected outputs, making its function unmistakable and distinct from the sibling tools (launch readiness, partnership business case).
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?
It clearly defines the intended use case (benchmarking a company's leadership mix against ELC community data) and gives explicit input guidelines (same population, exclude junior/mid ICs). It doesn't name alternative tools, but the context is sufficient for an agent to recognize when to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
build_partnership_business_caseELC partnership business-case builderARead-onlyIdempotentInspect
Builds the internal business case for sponsoring/partnering with Engineering Leaders Community: real reach numbers (3,100+ members, 120+ per meetup, 500+ at the annual conference, newsletter open rate), goal-specific framing (hiring, brand awareness, product feedback, thought leadership), and a forwardable approval email. Does NOT state ELC's own pricing — the site itself publishes no per-tier rate card ('book a call for a real quote'), so this tool never invents one either.
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | The primary reason to partner with ELC | |
| company_name | No | Optional: the company considering the partnership | |
| proposed_budget_eur | No | Optional: a proposed budget figure, if one exists yet, to frame the per-outcome bar against |
Output Schema
| Name | Required | Description |
|---|---|---|
| report | Yes | The full human-readable report. |
| source | Yes | Canonical engineeringleaders.io page this answer is derived from. |
| verdict | No | Headline verdict, when the tool returns one. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, non-destructive behavior. The description adds context about output content (forwardable email) and the explicit disclaimer that the tool never invents ELC pricing because the site doesn't publish rates. This aligns with openWorldHint false and adds value beyond the 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?
Two sentences with high information density. The first sentence front-loads the purpose and key content; the second clarifies a critical boundary (no pricing). No redundant or filler text.
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 output schema exists, return values don't need explanation. The description covers the tool's scope, limitations, and parameter context well. The only minor gap is lack of differentiation from siblings, but that's more about usage guidelines. Overall complete for this complexity.
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%, providing baseline 3. The description enhances parameter understanding by naming the four goal-specific framings (hiring, brand awareness, product feedback, thought leadership) and implying how the budget factors into per-outcome framing. It doesn't cover company_name, but that's optional and self-explanatory.
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's purpose: building an internal business case for sponsoring/partnering with Engineering Leaders Community. It lists specific outputs (reach numbers, goal-specific framing, approval email), distinguishing it from sibling tools focused on launch readiness and leadership ratio benchmarking.
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 implies usage when a partnership business case is needed, but does not explicitly discuss when to use this tool versus alternatives like assess_community_launch_readiness or benchmark_leadership_ratio. No exclusions or alternative references are provided, so usage guidance is only implied.
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-qualityBmaintenanceProvides engineering leadership benchmarks, developer value calculation, and mentoring playbooks based on real 1:1 sessions with 300+ engineering leaders.Last updated1MIT
- Alicense-qualityBmaintenanceA living X-Matrix your AI agent can read, challenge and update — 3-to-5-year objectives, annual objectives, initiatives, KPIs, correlations, review cadences, and a completeness score. Exposes 11 tools and 9 guided prompts over MCP with local or hosted transports.Last updatedMIT
- Alicense-qualityCmaintenanceComputes multi-jurisdictional AI compliance readiness scores with sourced penalty math, enabling gap analysis and audit tier recommendations.Last updatedMIT
- AlicenseAqualityAmaintenanceExpert business diagnosis engine that analyzes companies across 11 dimensions and returns a Revenue Leak Score with prioritized, triple-option recommendations.Last updated91MIT