sechscamp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sechscampwhen is vibecamp 6 and where?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sechscamp
Unofficial community stdio MCP that answers questions about vibecamp 6 from bundled public vibe.camp pages.
This is not an official vibecamp project. It is not run by vibecamp, not affiliated with the vibecamp team, and not official software. sechscamp is only an affectionate unofficial nickname for VC6 — not branding.
Host LLMs call tools; this process only retrieves sourced public-page facts. It does not call an LLM.
Event: vibecamp 6 (VC6), June 17-20, 2027, Camp Ramblewood (Darlington, MD)
Sources: public vibe.camp pages shipped in
knowledge/Not included: Discord scraping, attendee PII, or authenticated my.vibe.camp data
Ticket prices: this helper does not invent 2027 dollar amounts (official FAQ: check back soon)
Run
Requires Node.js 18+.
git clone https://github.com/minntelligence/sechscamp.git
cd sechscamp
node src/index.mjsOr without cloning:
npx -y github:minntelligence/sechscampThe process speaks JSON-RPC 2.0 MCP on stdin/stdout (newline-delimited JSON, plus Content-Length framing). Logs go to stderr.
npm testRelated MCP server: mcp-docs
MCP client config
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"sechscamp": {
"command": "npx",
"args": ["-y", "github:minntelligence/sechscamp"]
}
}
}Local checkout:
{
"mcpServers": {
"sechscamp": {
"command": "node",
"args": ["/absolute/path/to/sechscamp/src/index.mjs"]
}
}
}Cursor
Same mcpServers.sechscamp block in Cursor MCP settings / mcp.json.
Generic stdio
node src/index.mjsTools:
Tool | What it does |
| Keyword search → ranked sourced snippets |
| Full topic markdown / facts by id or name |
| Catalog with one-line summaries |
| Natural-language question → sourced briefing (says so when unknown) |
Unknown answers point to Discord https://discord.gg/V6JtaMn7WC, team@vibe.camp, and support@vibe.camp as appropriate.
Markdown files under knowledge/ are also exposed as MCP resources (sechscamp://knowledge/...) when present.
Disclaimer
Unofficial community helper. Not run by vibecamp. Not affiliated. Not official software. Knowledge files are extracts of public vibe.camp pages only. For canonical details, read vibe.camp and the guidelines. Tickets: my.vibe.camp.
License
MIT
Available Tools
4 toolsask_vc6A
Natural-language VC6 question → sourced briefing from public vibe.camp pages (not a hallucinated essay; unofficial helper, not run by vibecamp). If unknown, says so and points to Discord and vibe.camp emails. Never invents 2027 ticket dollar prices.
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes | Question about vibecamp 6 / sechscamp / VC6. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and handles it well: it discloses that output is sourced rather than hallucinated, that the tool is unofficial, that it explicitly says 'I don't know' and redirects to Discord/email, and that it must never invent 2027 ticket prices. These are highly relevant honesty and fallback behaviors for an AI Q&A tool.
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 three compact sentences, each earning its place: what it does, how it handles unknown cases, and the specific prohibition on inventing ticket prices. It is front-loaded with the core purpose and contains no filler.
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 single-parameter, no-output-schema tool, the description covers the core behavior, fallback behavior, and honesty constraints well. It lacks explicit return-format details and clear routing against sibling tools, but the provided behavior is sufficient for an agent to call it correctly in most cases.
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 describes the single 'question' parameter at 100% coverage, so the baseline is 3. The description adds the useful nuance that the question should be natural-language and VC6-related, but it does not provide examples or format guidance beyond the schema.
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 that ask_vc6 turns a natural-language VC6 question into a sourced briefing from public vibe.camp pages. This distinguishes it well from search-style siblings in practice, though it does not explicitly name an alternative tool or contrast itself with search_vc6.
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 phrase 'natural-language VC6 question' implies this is for open-ended questions rather than structured search, but the description never explicitly says 'use this instead of search_vc6' or provides exclusion criteria. Usage context is implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_topicA
Load one VC6 topic by id or name (e.g. dates-location, tickets, wifi-cell, nudity) and return sourced markdown or facts.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | Topic id or name from list_topics. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses that the tool returns sourced markdown or facts and is a load, but it does not mention behavior for missing/unknown topics, authentication, or reading vs mutation beyond the verb 'load'.
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?
One compact sentence front-loads the action ('Load one VC6 topic') and includes concrete examples with no filler. Every phrase earns its place.
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 tool is simple with a single well-documented parameter. Without an output schema, the description compensates by stating the return type ('sourced markdown or facts'). It could add not-found behavior, but the essentials are covered.
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 the description need not re-document the 'topic' parameter. It adds useful example topic names, but not much deeper semantic meaning, so 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?
States a specific operation ('Load one VC6 topic') with clear retrieval keys (id or name) and output ('sourced markdown or facts'). The verb and 'one' distinguish it from list/search/ask siblings.
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?
Implies use when you already have a topic id or name, and the schema points to list_topics, but the description never names alternatives or says when to use search_vc6/ask_vc6 instead. Guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_topicsA
Catalog of bundled VC6 knowledge topics with one-line summaries and source citation.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden, and it does disclose the key behavior: it returns a catalog of bundled topics, each with a one-line summary and source citation. It does not detail response shape or ordering, but for a read-only, parameterless list operation this is sufficient and not misleading.
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 front-loaded sentence that communicates scope, content, and output characteristics without filler. Every element contributes 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?
For a simple parameterless list tool with no output schema, the description covers the essential facts: what is listed, what each entry contains, and that it is a fixed bundled set. It could further clarify how it relates to get_topic or search_vc6, but that is a nice-to-have rather than a gap for invocation.
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 tool has zero parameters and the schema is an empty object, so there is nothing for the description to explain. This matches the baseline for parameterless tools; no parameter semantics are needed.
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 identifies the resource ('bundled VC6 knowledge topics') and the content of the result ('one-line summaries and source citation'), and the name list_topics supplies the verb. It is distinguishable from siblings such as search_vc6 and get_topic because it addresses a fixed catalog rather than retrieval or search, though the description itself does not explicitly say 'lists' or 'returns'.
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 word 'catalog' implies use when the agent wants an overview of available VC6 topics, but the description gives no explicit when-to-use/when-not-to-use guidance and never names alternatives such as search_vc6 or get_topic. Usage must be inferred from the resource type rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_vc6A
Keyword search over bundled VC6 / sechscamp knowledge (facts.json + topic markdown). Returns ranked sourced snippets and source URLs. Does not invent ticket prices.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum hits to return (default 8). | |
| query | Yes | Search string, e.g. 'when is vibecamp', 'refunds', 'ramblewood'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries the full burden. It discloses the return format (ranked sourced snippets and source URLs), scopes the knowledge base to facts.json + topic markdown, and adds a notable behavioral guarantee: "Does not invent ticket prices." It doesn't mention side effects or rate limits, but this is adequate for a read-only search tool.
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 with minimal filler. It front-loads the core action and purpose, then concisely lists the return type and a key limitation. Every clause contributes meaningful information.
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 two-parameter search tool, the description covers purpose, scope, output shape, and a behavioral guarantee. It lacks explicit routing among sibling tools and does not detail the output structure beyond snippets and URLs, but given the low complexity and the absence of an output schema, it is nearly 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 100% (both query and limit are described in the input schema), so the baseline is 3. The description adds no parameter-specific details beyond the "keyword search" framing; it doesn't need to, but it also doesn't elevate the score.
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 states a specific verb and resource: "Keyword search over bundled VC6 / sechscamp knowledge (facts.json + topic markdown)", and clearly defines the output as "ranked sourced snippets and source URLs." While it does not explicitly name sibling tools, the search action and the "does not invent ticket prices" caveat imply differentiation from the Q&A-style ask_vc6.
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 this is for keyword-style factual lookup and includes a limitation, but it never explicitly states when to prefer search_vc6 over get_topic, list_topics, or ask_vc6. There is no when-not-to-use guidance, so an agent must infer the intended use case from the action and output description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v1.0.0- First observed
ask_vc6 - First observed
get_topic - First observed
list_topics - First observed
search_vc6
TDQS
The tools are mostly distinct: list_topics and get_topic are clearly separate, while search_vc6 and ask_vc6 both retrieve information but are differentiated by keyword search vs. natural-language briefing. Some overlap exists but descriptions make the boundaries clear.
All tool names follow a verb_noun pattern with lowercase and underscores (search_vc6, get_topic, list_topics, ask_vc6). The pattern is consistent, though the object varies between 'vc6' and 'topic/topics', causing slight inconsistency.
Four tools is a well-scoped set for a focused VC6 knowledge retrieval server. Each tool has a clear purpose and none feel redundant or excessive.
The tool set covers the full retrieval workflow: listing topics, fetching a specific topic, searching, and asking natural-language questions. No obvious missing capability for the stated domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for querying Forkast documentation
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context22265MIT
- AlicenseNot gradedqualityDmaintenanceGeneric MCP server that exposes Markdown documentation to LLMs, enabling them to search and answer questions about any software documentation.MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for the AI Engineer Conference 2025, enabling talk submissions and conference information retrieval.56MIT
- AlicenseAqualityCmaintenanceMCP server that searches 9 sources, scrapes full content, reranks results, and synthesizes cited answers with free LLMs.5MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minntelligence/sechscamp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server