personality-mcp
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., "@personality-mcpStart MBTI test"
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.
Personality MCP Server
多类型人格测试 MCP 服务器 — 基于 mbti-mcp 扩展。
NPM: https://www.npmjs.com/package/personality-mcp GitHub: https://github.com/yaoxiaolinglong/personality-mcp
11 种测试
测试 | 题数 | 类型数 | 说明 |
MBTI 简化版 | 28 | 16 | E/I S/N T/F J/P 四维度 |
MBTI 认知功能版 | 48 | 16 | Jung 8种认知功能深度分析 |
九型人格 | 36 | 9 | 含翼型分析 |
九型人格深度版 | 72 | 9 | 含翼型和副型详细分析 |
大五人格 (OCEAN) | 50 | — | 开放性/尽责性/外向性/宜人性/神经质 |
大五人格简版 | 25 | — | 快速 OCEAN |
DISC | 28 | 4 | 支配/影响/稳健/谨慎 行为风格 |
DogTI 狗狗人格 | 24 | 8 | 金毛/哈士奇/柯基/柴犬/边牧/贵宾/斗牛/吉娃娃 |
动物系人格 | 30 | 8 | 狮子/海豚/老鹰/狼/猫/兔子/狐狸/熊 |
猫咪人格 | 20 | 8 | 波斯/暹罗/英短/豹猫/布偶/无毛/橘猫/奶牛 |
暗黑三角 | 27 | 3 | 自恋/马基雅维利/精神病态 |
Related MCP server: MCP Discord
快速开始
npx -y personality-mcpLibreChat 集成
mcpServers:
personality:
type: stdio
command: npx
args:
- -y
- personality-mcp
timeout: 60000MCP 工具
工具 | 说明 |
| 列出所有测试类型 |
| 开始测试,返回第一题和 session |
| 答题 (1-5分),返回下一题 |
| 查看进度 |
| 计算最终结果 |
许可证
MIT — 基于 wenyili/mbti-mcp
Available Tools
5 toolsanswer_questionA
提交答案(1-5分)并获取下一题
| Name | Required | Description | Default |
|---|---|---|---|
| score | Yes | 1=强烈不同意 ... 5=强烈同意 | |
| session | 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. It discloses the main behavior (submit answer, return next question) but omits details like whether the session object is mutated, validation messages, or requirements for an active session. This is partially transparent 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 concise sentence, directly stating the action and result with no fluff.
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 simple two-parameter tool with a nested session object, the description covers the core operation. It lacks detail on the exact structure of the returned next question, but this is not critical for invocation. Overall, it is sufficient for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with descriptions for both 'score' and 'session'. The description adds no new parameter information beyond the schema's min/max constraints and object structure.
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: submit a score (1-5) and retrieve the next question. It distinguishes itself from siblings like list_tests, start_test, get_progress, and calculate_result.
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 tool is used during an active test session to record an answer and advance to the next question. It doesn't explicitly mention when not to use it or compare with alternatives, but the context is clear from the action name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
calculate_resultC
计算最终测试结果
| Name | Required | Description | Default |
|---|---|---|---|
| session | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description alone must disclose behavioral traits. It only states what the tool does (calculates result) but does not indicate side effects, state changes, permission requirements, or the nature of the output. This is a critical gap for a tool that likely operates on a session.
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 short phrase with no wasted words, which is concise in form. However, it is so minimal that it borders on under-specification, providing only a bare action without context or structure, similar to the 'Process' example.
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 lack of annotations, no output schema, and a single undocumented nested parameter, the description carries full responsibility for completeness. It fails to explain what the final test result is, how it is computed, what the return value looks like, or any required session structure, making it grossly inadequate.
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 shows one required 'session' object with 0% description coverage, and the tool description does not explain what 'session' should contain or how it relates to calculating the result. The agent is left with no information to construct a valid session object, making correct invocation impossible.
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 calculates the final test result, with a specific verb and resource. However, it does not differentiate from sibling tools like 'get_progress' or 'answer_question', which might also involve result-related actions, so it lacks explicit distinction.
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 on when to use this tool versus alternatives. There is no mention of prerequisites, typical scenarios, or why one would choose 'calculate_result' over 'get_progress' or other siblings, leaving the agent with no context for appropriate invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_progressC
查询当前测试进度
| Name | Required | Description | Default |
|---|---|---|---|
| session | Yes |
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. The verb '查询' (query) implies a read-only operation, but there is no disclosure about session requirements, return format, or side effects. Minimal behavioral context beyond the name.
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 concise sentence that is front-loaded with purpose. It is appropriately brief for a simple tool, though it borders on under-specification by omitting useful details.
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 one nested object parameter and no output schema, the description lacks essential information about the session object and the nature of the returned progress. It is incomplete for an agent to invoke correctly without additional assumptions.
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 defines a single required 'session' object but provides no description, and schema description coverage is 0%. The description does not mention 'session' at all, failing to compensate for the opaque parameter.
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 queries current test progress using a specific verb and resource. It distinguishes from siblings like list_tests and start_test, which serve different purposes.
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 on when to use this tool versus alternatives like list_tests or start_test. The description gives no context about prerequisites (e.g., an active session) or scenarios where this tool is preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_testsA
列出所有11种可用的测试类型
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description alone must convey behavioral traits. The verb '列出' implies a read-only operation, and the scope '所有11种' is disclosed. However, it does not describe the return format or any other behavioral details, which would be beneficial for a tool with no 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, clear sentence that conveys the purpose without any waste. 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?
Given the tool's simplicity (no parameters, no output schema, no annotations), the description sufficiently defines its function. It lacks usage context, but that is already captured in the usage guidelines dimension.
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 an empty schema, so the description does not need to explain parameters. The baseline for 0-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 clearly states the tool's function: '列出所有11种可用的测试类型' (List all 11 available test types). The verb '列出' and resource '测试类型' are specific, and the count '11种' adds precision. It distinguishes from sibling tools like start_test and answer_question, which are action-oriented.
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 prerequisites, alternatives, or exclusion cases. The use case must be inferred from the tool's name and sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_testA
开始人格测试。可选: mbti_simplified(MBTI简化版), mbti_cognitive(MBTI认知功能版), enneagram(九型人格), enneagram_advanced(九型人格深度版), bigfive(大五人格), bigfive_short(大五人格简版), disc(DISC), dogti(DogTI狗狗人格), animal(动物系人格), cat(猫咪人格), dark_triad(暗黑三角)
| Name | Required | Description | Default |
|---|---|---|---|
| testType | 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 only states that it starts a test but does not mention side effects (e.g., session creation, progress reset), prerequisites, or what the response contains—critical gaps for a state-changing action.
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 with the core action stated first. The long list of test types is necessary but creates a minor readability burden; overall, every element 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?
For a tool with one parameter and no output schema, the description adequately covers the test type enumeration. However, it omits behavioral context (e.g., whether the test starts immediately, how the agent should proceed) and does not clarify return behavior, leaving the agent partially in the dark.
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?
Though schema coverage is 100% with an enum, the description adds semantic value by mapping each enum value to a human-readable Chinese explanation (e.g., MBTI simplified, Enneagram deep version). This goes beyond the bare schema definition, helping the agent select the correct test type.
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 specific verb 'start' and clearly identifies the resource (personality test), while listing all available test types. This differentiates it from sibling tools like list_tests, answer_question, get_progress, and calculate_result, which serve other stages of the workflow.
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: if you want to begin a personality test, this is the tool to use. However, it provides no explicit when-not-to-use guidance or references to alternatives, leaving the agent to infer context from sibling tool names.
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.
5 tool updates
v1.0.0- First observed
answer_question - First observed
calculate_result - First observed
get_progress - First observed
list_tests - First observed
start_test
TDQS
Each tool has a distinct role in the test-taking workflow: listing tests, starting a test, answering questions, checking progress, and calculating results. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern with snake_case: list_tests, start_test, answer_question, get_progress, calculate_result. The convention is uniform and predictable.
With 5 tools, the server is well-scoped for a personality test domain. Each tool covers a necessary step in the user journey, and the count is neither too thin nor excessive.
The tool surface covers the full lifecycle of taking a personality test: discover available tests, begin one, answer questions iteratively, monitor progress, and obtain the final result. No obvious gaps exist for the intended purpose.
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
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
An MCP server for deep research or task groups
MCP server for NanoBanana AI image generation and editing
Official MCP server for Certifier to issue, manage, and track certificates and badges.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server for the MBTI personality test, supporting AI assistants to guide users through the personality test and provide result analysis.2Apache 2.0
- AlicenseNot gradedqualityCmaintenanceThe most complete open-source MCP server for Discord — 80+ tools, dual-mode: integrated (plugin) or standalone4310MIT
- AlicenseNot gradedqualityDmaintenanceOfficial MCP server for PostIdentity - Generate AI-powered social media posts, threads, and replies from any MCP-compatible AI assistant with identity management and refinement capabilities.171MIT
- AlicenseBqualityBmaintenanceMCP server exposing the Psychopathia Machinalis diagnostic framework (79 conditions) — differential diagnosis of AI dysfunctions via 11 read-only tools.11MIT
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/yaoxiaolinglong/personality-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server