Wikivibe MCP
Server Details
Search and read public Wikivibe articles about AI coding, agents, MCP, GEO, bots and deployment.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- AlexMi64/wikivibe-mcp
- GitHub Stars
- 1
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 3.2/5 across 9 of 9 tools scored.
Each tool targets a distinct resource and action: get for single items, list for collections, search for finding, and recommend for project-based suggestions. No two tools have overlapping purposes.
All tool names follow a consistent verb_noun snake_case pattern (e.g., get_article, search_skills). The verbs and nouns are clearly descriptive and uniform across the set.
With 9 tools, the set is well-scoped for a public knowledge server covering articles, design templates, and AI skills. Each tool serves a clear role without redundancy or overload.
The tool set provides comprehensive read and search operations for all three content types, plus a recommendation feature. Minor gaps exist, such as no listing of all articles by section or pagination support, but core workflows are covered.
Available Tools
9 toolsget_articleAInspect
Read one public Wikivibe article by absolute URL, path, or section plus slug.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Absolute article URL or localized path. | |
| path | No | Article path, for example /ru/novosti/example/. | |
| slug | No | Article slug when url/path is not provided. | |
| locale | No | ru | |
| section | No | Section slug when url/path is not provided. | |
| maxChars | 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. It indicates a read operation on public articles, but does not disclose any potential side effects, rate limits, or error conditions. The transparency is 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the core functionality without unnecessary words or repetition.
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 has 6 parameters and no output schema, the description is minimal. It covers the primary purpose and parameter usage but omits details about the return format, error scenarios, or any additional behavioral context needed for a complete understanding.
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 67% (4 of 6 parameters have descriptions). The description adds significant value by explaining how parameters relate (e.g., using URL, path, or section+slug, and the locale default). However, it does not elaborate on all parameters like maxChars behavior beyond the schema's min/max/default.
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 reads one public article using various identifiers (URL, path, or section+slug). It is specific and distinguishes from siblings like list_latest_articles and search_articles, which are list/search operations.
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 gives minimal guidance on when to use this tool versus alternatives. It does not specify when not to use it, such as when searching or listing would be more appropriate, leaving the agent to infer usage context from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_design_templateBInspect
Read one public VibeDesign template by slug, absolute URL or localized path.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Absolute template URL or localized path. | |
| path | No | Template path, for example /ru/vibe-design/makety/example/. | |
| slug | No | Template slug. | |
| locale | No | ru |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must cover behavioral traits. It only states 'Read' implying a safe read operation, but does not disclose any potential side effects, authentication needs, rate limits, or return value characteristics. Minimal disclosure.
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?
Single sentence, 12 words, front-loaded with the core purpose. Every word adds value. 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?
The description is adequate for a simple read tool, but lacks mention that only one of url/path/slug should be used. It also does not clarify the default locale or the shape of the returned template. Given no output schema, more context about the output would help.
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 documentation covers 75% of parameters. The description reiterates parameter names (slug, url, path) without adding new meaning. It does not explain mutual exclusivity or when to use each. Baseline 3 for high schema coverage.
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 verb 'read', the resource 'public VibeDesign template', and the three selection criteria (slug, absolute URL, localized path). This distinguishes it from sibling search tools like search_design_templates which are for finding multiple templates.
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?
No guidance on when to use this tool versus siblings. It does not mention that this is for fetching a single template by exact identifier, while search_design_templates is for querying. No when-not-to-use or alternatives are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_skillBInspect
Read one public Wikivibe AI-agent skill by slug, absolute URL or localized path.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Absolute skill URL or localized path. | |
| path | No | Skill path, for example /ru/skills/astro-performance-audit/. | |
| slug | No | Skill slug. | |
| locale | No | ru |
Tool Definition Quality
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 only says 'Read' but does not disclose behavior beyond that, such as permissions needed, error handling, or what happens if the skill is not found.
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 a single sentence that is clear and to the point. It could be slightly more structured but is effective and concise.
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 has 4 parameters with no output schema and no annotations, the description is minimal. It does not explain return format, error handling, or how identifiers work together, leaving some gaps for a complete understanding.
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 75%, so the schema already documents most parameters. The description adds a summary of identification methods but no additional meaning 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.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Read', the resource 'one public Wikivibe AI-agent skill', and the identifiers (slug, absolute URL, localized path). It distinguishes from sibling tools like search_skills which are for searching.
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 does not explicitly state when to use this tool versus alternatives like search_skills or recommend_skills_for_project. It implies usage for retrieving a specific skill by identifier but lacks explicit guidance on exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_latest_articlesCInspect
List the newest public canonical Wikivibe articles.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| locale | No | ru |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It only states the purpose, omitting details like read-only nature, ordering (presumably by date), or any side effects. This is insufficient.
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 very concise with a single sentence, but it lacks structural elements like separation of purpose and usage. It efficiently conveys core function but could benefit from additional detail without being verbose.
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 presence of sibling tools (search_articles, get_article) and no output schema, the description is incomplete. It does not specify return fields, ordering, or pagination behavior, making it insufficient for a list tool with alternatives.
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 the tool description does not elaborate on the 'limit' or 'locale' parameters. While the schema names are somewhat self-explanatory, the description adds no extra meaning or usage context, failing to compensate for missing schema 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 clearly states the verb 'List' and the resource 'newest public canonical Wikivibe articles', precisely indicating the tool's function. It distinguishes itself from siblings like get_article (single article) and search_articles (search by query).
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 no guidance on when to use this tool versus alternatives. It does not mention when not to use it or suggest other tools for different needs, leaving the agent without context for decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_sectionsCInspect
List public Wikivibe sections that contain indexable articles.
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | ru |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It only mentions 'public sections' and 'indexable articles', but omits whether changes are made, pagination, or response structure. For a read-only tool, more detail is needed.
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 very short (one sentence), which is concise, but it omits necessary details. It is not verbose but under-specified for effective use.
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 has one optional parameter with enum and no output schema, the description is incomplete. It doesn't explain what the output list contains, how filtering works, or any behavioral aspects like pagination.
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%, meaning parameters are undocumented in the schema. The description does not explain the 'locale' parameter, its enum values, or default behavior. It fails to compensate for the lack of schema documentation.
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 function: listing public Wikivibe sections containing indexable articles. The verb 'list' and resource 'sections' are specific, and it distinguishes from sibling tools that deal with articles.
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?
No explicit guidance on when to use this tool versus alternatives like get_article or search_articles. The usage context is implied but no when-not or exclusion criteria are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_skills_for_projectAInspect
Recommend Wikivibe AI-agent skills from a safe project summary: frameworks, dependencies, file paths, goals and problems. Do not send source code.
| Name | Required | Description | Default |
|---|---|---|---|
| goal | No | What the user wants the agent to achieve. | |
| files | No | ||
| limit | No | ||
| locale | No | ru | |
| category | No | Optional category slug. | |
| problems | No | ||
| frameworks | No | ||
| dependencies | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only adds a safety note about not sending source code; it omits whether the operation is read-only, requires authentication, or other behavioral traits.
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 concise sentences front-load the purpose and key inputs, with no 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?
Adequate for a recommendation tool but lacks output format details and behavioral info; given 8 parameters and no output schema, more context would help.
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?
With only 25% schema coverage, the description adds value by listing key parameters (frameworks, dependencies, goals, problems) but fails to explain limit, locale, or category beyond what the schema 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 clearly states 'Recommend Wikivibe AI-agent skills' with specific input types (frameworks, dependencies, goals, problems), distinguishing it from sibling tools like search_skills or get_skill.
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 project summary is available but lacks explicit when-to-use or when-not-to-use guidance compared to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articlesBInspect
Search public canonical Wikivibe articles about AI coding, agents, MCP, tools, SEO/GEO, bots, deployment and product workflows.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Search phrase. | |
| locale | No | ru |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. The description does not disclose any behavioral traits such as ordering, pagination, read-only nature, or performance characteristics. It only states 'search public canonical articles', which suggests it's safe but lacks detail.
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 a single sentence, which is concise but lacks structure. It does not front-load the key action or follow a clear pattern. It could be more informative without being verbose.
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 three parameters, no output schema, and no annotations, the description is too brief. It fails to explain the search mechanism, result format, or typical use cases, leaving the agent underinformed.
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 only 33% (only query has a brief description). The description does not compensate by explaining the parameters; it only lists example topics but not how to use query, limit, or locale effectively.
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 verb 'Search' and the resource 'public canonical Wikivibe articles' and lists specific topics, distinguishing it from sibling tools like get_article and list_latest_articles.
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 for finding articles on specific topics, but does not explicitly state when to use it vs alternatives or when not to use it. Sibling tool names provide context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_design_templatesBInspect
Search public VibeDesign ready-made templates, layouts, components, dashboards, animations and source links from the Wikivibe catalog.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | Search phrase. Optional when category, stack or sourceType is provided. | |
| stack | No | Technology or tool, for example React, Tailwind, Figma. | |
| locale | No | ru | |
| category | No | Template category slug, for example landing, dashboards, components, animations. | |
| sourceType | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It only states that the tool searches and returns results, but does not mention read-only nature, side effects, or any limitations. For a search tool, this is minimal transparency.
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 a single sentence of about 20 words, with no unnecessary information. It is concise and front-loaded with the key action and resource.
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 6 parameters, no output schema, and no annotations, the description covers the basic purpose but omits important details like the fact that query is optional when category/stack/sourceType is provided, and does not describe the return format or pagination. It is adequate but not fully complete.
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 50%, and the tool description adds some context by listing item types that may correspond to categories, but does not fully explain all parameters. For example, 'limit' and 'locale' are not described in the description, and the schema does not describe 'limit' either. The description partially compensates for the gap.
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 searches for templates, layouts, components, etc. from a specific catalog. It uses a specific verb 'search' and identifies the resource. It distinguishes from sibling tools like 'search_articles' by focusing on design templates, but could be more explicit about differentiation.
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?
No explicit guidance on when to use this tool versus alternatives, but the name and description imply it is for searching design templates. The existence of sibling tools like 'get_design_template' for a single template and 'search_articles' for articles provides some implicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_skillsCInspect
Search public Wikivibe AI-agent skills with GitHub metadata, project signals, install prompts and usage rules.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | Search phrase. Optional when category, stack or riskLevel is provided. | |
| stack | No | Technology or tool, for example Astro, MCP, Directus, Storybook. | |
| locale | No | ru | |
| category | No | Skill category slug, for example coding, search, data, automation, security, ai-ml, devops. | |
| riskLevel | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only says 'Search public...' implying a read operation. It does not disclose any behavioral traits like rate limits, authentication requirements, or behavior on empty results. With no annotations, the description should carry more detail.
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 a single sentence with no redundancy. However, given the complexity of the tool (6 parameters), it might benefit from slightly more structure or bullet points to enhance readability.
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?
The description lacks essential context such as return format, pagination behavior, or how filters interact. For a search tool with multiple optional parameters and no output schema, more detail is needed for an agent to use it effectively.
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 50%, so the description should compensate but it adds no parameter-specific information beyond the schema. The schema already describes most parameters adequately, but the description does not clarify relationships or usage patterns among the six 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?
The description explicitly states it searches public Wikivibe AI-agent skills and lists included metadata (GitHub, project signals, install prompts, usage rules). This clearly distinguishes it from sibling tools like search_articles or get_skill.
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?
No guidance on when to use this tool versus alternatives such as recommend_skills_for_project or get_skill. The description does not specify ideal scenarios or when not to use it.
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!