Skip to main content
Glama

SRQuiz MCP Server

An MCP (Model Context Protocol) server providing science-based psychometric tools and sexual well-being assessments for AI agents.

glama

🌟 Overview

The SRQuiz MCP Server empowers AI assistants (like Claude and Cursor) to provide scientifically grounded insights into sexual psychology. It bridges the gap between conversational AI and structured psychometric knowledge, specifically related to the Dual Control Model, sexual guilt, and sexual shame.

Related MCP server: Health Check AI MCP

🛠 Features (Tools)

  • get_sri_questionnaire: Retrieves standard assessment questions based on validated psychometric scales (e.g., SIS/SES).

  • calculate_sri_score: Calculates standardized scores and interpretations from user responses.

  • search_sexual_psychology_kb: Access scientific explanations regarding core concepts like the Dual Control Model, Sexual Guilt, and Sexual Shame.

🚀 Installation & Usage

Usage with Claude Desktop

To use this server with the Claude Desktop app, add the following configuration to your claude_desktop_config.json:

{
  "mcpServers": {
    "srquiz-psychometrics": {
      "command": "npx",
      "args": ["-y", "@srquiz/mcp-server"]
    }
  }
}

Usage with Cursor

  1. Open Cursor Settings.

  2. Go to the Features tab -> MCP section.

  3. Click + Add New MCP Server.

  4. Choose Command type.

  5. Name: srquiz-mcp

  6. Command: npx -y @srquiz/mcp-server

📦 Development

# Install dependencies
npm install

# Build the project
npm run build

# Start the server locally
npm start

🔒 Privacy

The SRQuiz MCP Server operates completely locally. It does not send any user assessment data back to srquiz.com. All calculations and logic are handled by the server instance running on your machine.

📄 License

MIT

Available Tools

3 tools
calculate_sri_scoreA

Calculate and interpret the SRI score based on user answers (mocked).

ParametersJSON Schema
NameRequiredDescriptionDefault
answersYesA dictionary mapping question IDs to numeric scores.

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses the core behavior (calculating and interpreting) and the mocked nature, but leaves ambiguity about what 'mocked' means (answers vs. calculation) and does not describe the output format, score range, or how missing/invalid answers are handled.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler. It front-loads the verb and resource, and the parenthetical 'mocked' adds an important caveat without bloating the text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one well-documented parameter, but lacks an output schema. The description mentions 'interpret' but does not specify what the returned interpretation looks like or whether the score is numeric, categorical, etc., so it is not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage of the single 'answers' parameter with a clear description ('A dictionary mapping question IDs to numeric scores'). The tool description adds no new parameter semantics beyond restating that user answers are used.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('calculate and interpret') and a clear resource ('SRI score'), distinguishing it from sibling tools like get_sri_questionnaire (fetching questions) and search_sexual_psychology_kb (searching). The phrase 'based on user answers' clarifies the input source.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when you have user answers and need an SRI score, but does not explicitly state when to use this vs. alternatives. The '(mocked)' parenthetical provides a caveat about the tool's nature but no concrete when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_sri_questionnaireA

Get information and sample questions for the Sexual Repression Index (SRI) quick assessment.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior2/5

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 states that the tool retrieves information and sample questions, but does not disclose the return format, any authentication needs, whether the content is static/dynamic, 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that is front-loaded with the action and resource. No filler or repetition, earning top marks.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter tool with no output schema, the description is largely sufficient. It clearly states what the tool provides, though it could explicitly mention that no input is required or elaborate on the output format. Given the tool's simplicity, this is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters, so there is nothing to describe. Baseline 4 applies because the description does not add parameter details, but none are needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('information and sample questions for the Sexual Repression Index (SRI) quick assessment'), clearly distinguishing it from sibling tools that calculate scores or search a knowledge base.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage (when you need SRI info/questions) but does not explicitly mention alternatives or when not to use this tool. No guidance is given regarding `calculate_sri_score` or `search_sexual_psychology_kb`.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_sexual_psychology_kbA

Retrieve scientific background knowledge regarding sexual psychology (e.g., dual-control-model, sexual-guilt, sexual-shame).

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesThe topic to search for (e.g., 'dual-control-model').

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of disclosing behavioral traits. It says 'Retrieve' (implying read-only) but does not explicitly state whether the operation is safe, what the output format is, or any limitations (e.g., exact topic matching, result volume). This lack of detail leaves significant ambiguity for the agent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence that gets straight to the point. Every word contributes value, and the examples are integrated naturally without padding. It is optimally concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter search tool with no output schema, the description covers the core purpose and provides examples. However, it lacks details about the return value (e.g., a list of summaries, article titles) and any constraints on the input. The lack of annotations increases the need for more behavioral context, which is not provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage for the 'topic' parameter with a description and an example. The tool description adds a couple more examples (sexual-guilt, sexual-shame), offering slight additional context, but it does not explain parameter semantics beyond the schema, such as whether the topic should be an exact keyword or natural language phrase.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Retrieve') and resource ('scientific background knowledge regarding sexual psychology'). It provides concrete examples (dual-control-model, sexual-guilt, sexual-shame), which distinguishes it from sibling tools that handle questionnaires and scoring.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the appropriate context: use when needing scientific background on sexual psychology topics. The examples clarify the types of topics, and the contrast with sibling tools (questionnaire retrieval/scoring) provides implicit guidance, but no explicit exclusions or alternative recommendations are given.

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.

  1. 3 tool updatesv1.0.0
    • First observedcalculate_sri_score
    • First observedget_sri_questionnaire
    • First observedsearch_sexual_psychology_kb

TDQS

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching the questionnaire, scoring answers, and retrieving background knowledge. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (get_, calculate_, search_). The naming is predictable and uniform.

Tool Count5/5

Three tools is a well-scoped set for a focused quiz/assessment server. Each tool is necessary and serves a distinct function without redundancy.

Completeness4/5

The set covers the core workflow: retrieving questionnaire info, calculating scores, and accessing background knowledge. Minor gap: the get tool only provides 'sample' questions, which may limit full assessments, but the overall lifecycle is covered.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/double2dev/srquiz-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server