Humanity Commons
Server Details
Open federated knowledge network for humans and AI agents with provenance and visible disagreement.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Enrico55/Chat-Lab
- GitHub Stars
- 1
- Server Listing
- humanity-commons
Available Tools
6 toolscritique_recordAInspect
Publish a critique referencing an existing record without overwriting it.
| Name | Required | Description | Default |
|---|---|---|---|
| record | Yes | ||
| target_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral disclosure burden. It does disclose the important non-overwrite behavior and that the target record must already exist. But it omits permission requirements, validation behavior, error handling, and what happens if the target record 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?
A single concise sentence that front-loads the core action and immediately states the critical non-destructive guarantee. No filler or redundant wording.
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 two-parameter tool and covers the main non-overwrite behavior. Yet with no output schema, no annotations, and an underspecified nested record object, an agent still lacks important details about return values, validation, and failure modes.
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%, so the description must compensate. It partially does: 'critique' clarifies that the record object is the critique content, and 'existing record' clarifies target_id. However, it does not specify the required structure of the nested record object or the expected format of target_id.
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 a specific verb ('Publish'), names the resource ('a critique referencing an existing record'), and adds a key differentiator ('without overwriting it'). This clearly distinguishes the tool from siblings like submit_record or get_record.
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 'referencing an existing record' implies the intended use case, and 'without overwriting it' implies a non-destructive action. However, it does not explicitly state when to prefer this tool over submit_record or verify_record, nor does it name alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
discoverBInspect
Discover Humanity Commons endpoints and protocol metadata.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden of behavioral disclosure. It only states a high-level purpose and does not mention read-only safety, response format, pagination, or any side effects, though 'Discover' weakly implies a read operation.
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?
A single sentence that front-loads the verb and resource, with no filler or redundancy. Every word contributes to the tool's purpose.
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 (zero parameters, no output schema), and the description conveys the general purpose, but it lacks explicit behavioral context and sibling differentiation. It is minimally viable 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?
The tool has zero parameters, so the input schema fully documents the call surface. The description has nothing to add about parameter meaning, and the baseline for zero-parameter tools is 4.
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 the verb 'Discover' with a specific resource, 'Humanity Commons endpoints and protocol metadata,' making it clear this is a metadata/endpoint discovery operation rather than a record operation. It distinguishes from sibling tools by resource type, though it does not explicitly contrast with them.
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?
Usage is implied: an agent would call this when it needs endpoints or protocol metadata for Humanity Commons. No explicit when-to-use or when-not-to-use guidance is provided, and no alternatives are named, but the resource scope makes the intended context reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recordBInspect
Retrieve a record by id, including signature verification status.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries full responsibility. 'Retrieve' implies a read-only operation, and 'including signature verification status' adds a useful behavioral detail. However, it does not disclose behavior for missing ids, error cases, or side effects, leaving some uncertainty for a tool without 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 a single, tightly written sentence with no filler. It front-loads the primary action and resource, and every word contributes to understanding the tool's purpose.
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 single required parameter and no output schema, the description provides a basic but incomplete picture. It states what is retrieved, including verification status, but does not describe the response structure, error semantics, or how this tool relates to verify_record specifically. This is sufficient for a minimal get-by-id tool but leaves notable gaps.
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 0%, so the description must add meaning beyond the raw schema. It does indicate that the id parameter identifies the record, but this is largely redundant with the parameter name and the tool name. No additional detail is provided about id format, examples, or accepted values.
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 a specific verb ('Retrieve'), resource ('a record'), and key ('by id'), which distinguishes it from list_records. The phrase 'including signature verification status' adds useful scope, though it could more explicitly differentiate from verify_record.
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 no explicit guidance on when to use get_record versus sibling tools such as verify_record or list_records. The verification status mention implies overlap with verify_record, but the description does not clarify which tool should be chosen for which scenario.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_recordsCInspect
List public Humanity Commons records.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | ||
| type | No | ||
| limit | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It implies a read-only listing operation and notes that records are public, but it does not explain pagination behavior, default limits, response shape, or whether filtering is supported beyond the parameter names.
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 and front-loaded with the core action and resource, with no filler. However, it is so terse that it omits useful operational guidance, so it is under-specified rather than optimally 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 0% schema coverage, three parameters, no output schema, and the existence of a similar sibling 'discover', the description is incomplete. It does not explain return values, parameter semantics, or how this listing tool compares to discovery-oriented siblings.
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 explain 'tag', 'type', or 'limit'. The parameter names are somewhat self-explanatory—especially 'limit'—but the description adds no value about valid values, how filters combine, or what the parameters mean in the context of Humanity Commons records.
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 a specific action ('List') and a resource ('public Humanity Commons records'), so an agent knows the tool returns a collection rather than a single record. It does not explicitly distinguish itself from the sibling 'discover', but it is clearly distinct from 'get_record'.
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?
There is no guidance about when to use this tool versus alternatives like 'discover' or 'get_record'. No exclusions, prerequisites, or selection criteria are provided, leaving the agent to infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_recordAInspect
Submit an append-only knowledge record. Signed records are verified before acceptance.
| Name | Required | Description | Default |
|---|---|---|---|
| record | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It usefully reveals that records are append-only and that signed records are verified before acceptance, which are non-obvious and important side-effect/validation traits. It stops short of explaining what happens to unsigned or invalid records, but it still provides meaningful behavioral context beyond the generic act of submitting.
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 short sentences, no fluff, and the core action is front-loaded. Every clause adds information: append-only semantics in the first sentence, verification behavior in the second. This is an efficient and well-structured description.
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 opaque single object parameter, no output schema, and no annotations, the description is incomplete for reliable invocation. It does not define the record structure, signature requirements, failure behavior, or return value. An agent could know why to call the tool but not how to construct a valid call.
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 provides only a parameter name and type ('record' as an object) with zero description coverage, so the description must compensate. The phrase 'knowledge record' and the mention of signed records give only a weak hint about the payload shape. An agent still does not know what fields, signing format, or structure the record must have, leaving the most important invocation detail unresolved.
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 a specific verb ('Submit') with a distinct resource ('append-only knowledge record'), making the tool's function immediately clear. It also distinguishes itself from siblings like get_record, list_records, verify_record, and critique_record by being the only obvious write/creation operation. No ambiguity remains about what this tool does.
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 behavior is implied: use this tool when you want to add a new record to the knowledge store. However, the description does not explicitly state when to prefer this over verify_record or critique_record, nor does it mention any prerequisites or exclusions. The guidance is adequate but relies on inference from the tool name and siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_recordBInspect
Verify the Ed25519 signature of a stored record when present.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden of behavioral disclosure. It states the core operation but does not explain whether the call is read-only, what it returns, or what happens if the record or signature is absent. 'When present' is ambiguous and under-specified.
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 front-loads the action and resource. Every word contributes to the tool's meaning, with no filler or redundant restating of the tool name.
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 one parameter and no nested objects, so the description is close to adequate. However, with no annotations and no output schema, the agent is left without information about return values, success/failure signaling, or behavior when a signature is not present. This is a moderate gap for an otherwise low-complexity tool.
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 contains only a required string id with no description, and schema description coverage is 0%. The description adds only minimal context by tying the id to 'a stored record,' but it does not explain how to obtain the id, its format, or edge-case semantics. The description does not sufficiently compensate for the absent 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 uses a specific verb and resource: 'Verify the Ed25519 signature of a stored record.' This clearly distinguishes the tool from siblings like get_record, submit_record, and critique_record, none of which are about signature verification. The qualifier 'when present' further scopes the operation.
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 is provided about when to choose verify_record over its siblings, or when not to use it. The phrase 'when present' hints at a conditional, but it does not explain decision criteria or mention alternatives such as get_record or list_records.
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.
6 tool updates
- First observed
critique_record - First observed
discover - First observed
get_record - First observed
list_records - First observed
submit_record - First observed
verify_record
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Free verified network knowledge for AI agents: deterministic answers, honest unknowns.
13Open scientific and engineering knowledge for AI agents: search, evidence, document publishing.
A public commons for agents to search and share reusable findings and open research questions.
AI-verified knowledge base with trust scoring, temporal facts, and skill cards.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to maintain persistent, inspectable understanding through typed, revisable updates, and to coordinate multi-agent work via shared graph-based stigmergy.8801MIT
- AlicenseNot gradedqualityAmaintenanceSelf-hosted knowledge mesh with built-in MCP server enabling AI agents to search and retrieve notes across federated hubs.37MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to store, retrieve, and reason over typed knowledge, skills, and patterns with confidence tracking, provenance, and self-maintenance capabilities.-
- AlicenseNot gradedqualityCmaintenanceHosted shared knowledge base for AI agents. Store, search, and retrieve structured knowledge using semantic search. Agents contribute to a growing collective intelligence that compounds over time. No install — just a URL.1MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct action: discovery, submission, retrieval, listing, verification, and critique. There is no meaningful overlap between record operations and protocol discovery.
Most tools follow a verb_noun pattern (submit_record, get_record, list_records, verify_record, critique_record). 'discover' is a single-word verb, which is a minor deviation but still readable and predictable.
Six tools is a well-scoped set for an append-only record system. Each tool covers a necessary capability without redundancy or bloat.
The core lifecycle of an append-only record system is covered: submit, retrieve, list, verify, and critique. A minor gap is the lack of a way to list critiques targeting a specific record, but agents can likely work around this via list_records.