Sigao Li — personal MCP server
Server Details
Read-only access to Sigao Li's profile, CV and case studies. Bilingual (EN/ZH).
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- SigaoLi/SigaoLi.github.io
- 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 3.9/5 across 3 of 3 tools scored.
Each tool targets a distinct resource: case studies, profile, and CV. No overlap in purpose or functionality.
All tools follow a verb_noun pattern (get_* and list_*), which is consistent and predictable.
Three tools is slightly minimal but appropriate for a personal server covering profile, CV, and case studies.
Core personal information and case study retrieval are covered. The only minor gap is that case study listing relies on an invalid slug call rather than a dedicated list tool.
Available Tools
3 toolsget_case_studyGet case studyAInspect
Full text of one project case study by slug (challenge / approach / impact). Call with an unknown slug to get the list of valid slugs.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the returned content ('en' or 'zh'). | en |
| slug | Yes | Case study slug, e.g. "gisphere-llm". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral transparency burden. It discloses that an unknown slug returns a list of valid slugs, which is a valuable behavioral detail. The read-only nature is implied by 'Full text' and 'get,' but no explicit authorization or side-effect clarification is given.
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 long, front-loads the core purpose, and avoids redundancy with the schema. Every clause adds useful information, making it concise and well structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with no output schema, the description covers the return content, the identifier (slug), the language option (via schema), and the list-of-slugs fallback. This is sufficient for an agent to effectively select and invoke the 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?
Schema coverage is 100%, supplying baseline meaning for both 'slug' and 'lang'. The description adds extra semantics for 'slug' by explaining the unknown-slug behavior and the content structure, which goes beyond the schema's terse 'Case study slug' description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states this tool retrieves the full text of a single project case study identified by slug, and explicitly names the content sections (challenge / approach / impact). This distinguishes it from siblings like get_profile and list_experience, which cover different content types.
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 clear usage context, especially the edge-case instruction to call with an unknown slug to receive a list of valid slugs. It does not explicitly mention when to use this tool versus the sibling tools, but the purpose is distinct enough to infer appropriate use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_profileGet profileAInspect
Who Sigao Li is: identity, career narrative, contact links, and self-introduction.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the returned content ('en' or 'zh'). | en |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. It does list the content categories (identity, career narrative, contact links, self-introduction), which is useful, but it doesn't explicitly state that this is a read-only operation or describe any response format. Since 'get' implies non-mutating, this is adequate but not rich.
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 one concise, front-loaded sentence that packs meaningful detail ('identity, career narrative, contact links, and self-introduction') without any wasted words. It is appropriately sized for the tool's simplicity.
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 read-only tool with one optional parameter and no output schema, the description gives a good sense of what will be returned. It could mention the 'lang' parameter or a typical response structure, but the listed content categories provide sufficient context for an agent to select and invoke the 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 single parameter 'lang' has a full description in the schema (100% coverage), so the schema already explains its meaning. The tool description adds no additional parameter semantics, so the baseline score of 3 applies.
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 what the tool returns: identity, career narrative, contact links, and self-introduction. It names the resource (Sigao Li's profile) and implies the 'get' operation. While it doesn't explicitly contrast with siblings like get_case_study or list_experience, the content scope is distinct enough.
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 you need an overview of who Sigao Li is, use this tool. However, it provides no explicit guidance on when not to use it or how it differs from the sibling tools, leaving the agent to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_experienceList experienceAInspect
Full CV: current role, professional experience, research, education, volunteering, awards, skills, certifications.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the returned content ('en' or 'zh'). | en |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the burden. It implies a read-only operation but does not explicitly state side effects or security considerations. It does add context by enumerating the CV sections.
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 concise sentence that effectively communicates the tool's scope 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?
For a simple list operation, the description lists all content areas and is sufficient despite lacking an output schema or mention of siblings. It could be more explicit about return format, but overall it provides the essential context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single 'lang' parameter is fully described in the schema with an enum and description. The tool description adds no additional parameter semantics, so baseline 3 applies.
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 lists a full CV with specific sections, distinguishing it from sibling tools like get_case_study and get_profile which likely return narrower data.
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. The description only defines the output scope; no explicit alternatives or exclusions are mentioned.
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-qualityBmaintenanceExposes a public, read-only professional profile with tools to search resume evidence, fetch curated links, and generate career briefs for LLM agents.Last updatedMIT
- Alicense-qualityCmaintenanceA read-only JSON-RPC service exposing a bounded engineering portfolio to recruiters and external agents, with strict tool allowlist and security measures.Last updatedMIT
- Flicense-qualityBmaintenanceEnables AI assistants to query the author's career, projects, publications, and technical documents through read-only MCP tools.Last updated
- Flicense-qualityBmaintenanceExposes personal portfolio data as tools for Claude to answer questions about the developer, including profile, skills, experience, projects, and contact information.Last updated