Skip to main content
Glama
Tarika06

NitroStack Calculator MCP Server

by Tarika06

NitroStack Starter Template

Minimal template for learning NitroStack fundamentals with a calculator-focused MCP server and basic widgets.

What This Template Includes

  • calculator module with tools, resources, and prompts

  • TypeScript + Zod validation setup

  • Widget-ready project structure

  • Production-friendly npm scripts

Related MCP server: amrita-companion-mcp

Quick Start

npx @nitrostack/cli init my-server --template typescript-starter
cd my-server
npm run dev

Common Commands

npm run dev
npm run build
npm start

NitroStudio

NitroStudio is the recommended way to test and debug this template during development.

Community

Available Tools

9 tools
calculateC

Perform basic arithmetic calculations

ParametersJSON Schema
NameRequiredDescriptionDefault
aYesFirst number
bYesSecond number
operationYesThe operation to perform

TDQS

C2.9/5.0
Behavior2/5

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

No annotations exist, so the description must disclose behavior. It mentions 'basic arithmetic' but omits details like error handling (e.g., division by zero), precision, or output format.

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

Conciseness4/5

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

Single sentence is concise and front-loaded with the purpose. However, it could add a bit more value without losing conciseness.

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

Completeness2/5

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

No output schema exists, so the description should explain return values. It does not, nor does it cover edge cases or usage constraints.

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?

Schema coverage is 100%, so baseline is 3. The description adds no parameter information beyond what the schema already provides.

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

Purpose4/5

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

The description clearly states it performs basic arithmetic calculations, matching the input schema's operations. It distinguishes from sibling tools which are unrelated (e.g., finance, graph, temperature).

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

Usage Guidelines2/5

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 alternatives. While siblings are distinct, no context is provided for appropriate usage scenarios or prerequisites.

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

classify_transaction_batchC

Classifies a batch of raw transactions into merchant category, EMI/recurring-bill/salary flags, and confidence score.

ParametersJSON Schema
NameRequiredDescriptionDefault
transactionsYes

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only mentions output types. It omits behavioral traits like determinism, error handling, rate limits, or confidence score interpretation.

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

Conciseness3/5

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

The description is concise (one sentence) and front-loaded, but overly brief given the tool's complexity. It sacrifices necessary detail for brevity.

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

Completeness2/5

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

The tool has one input parameter and no output schema. The description does not detail possible categories, flags, confidence score range, or output structure, leaving the agent underinformed.

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

Parameters2/5

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

Schema coverage is 0%, and the description does not explain the transactions parameter structure, meaning of fields, or expected format beyond what the schema already shows.

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 it classifies raw transactions into merchant category, EMI/recurring-bill/salary flags, and confidence score. This is specific and distinguishes it from sibling tools like fetch_transaction_stream and ingest_financial_document.

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

Usage Guidelines2/5

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, nor any prerequisites or exclusions. It only states the function without context.

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

compute_financial_dna_scoreC

Runs the deterministic 6-dimension health score.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYes
dimensionsNoOptional subset; omit to recompute all six

TDQS

C2.5/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 full burden. It states 'deterministic' but does not disclose side effects (e.g., reads/writes), authentication needs, or output behavior. For a compute tool, transparency is minimal.

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

Conciseness3/5

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

The description is a single sentence, which is concise but lacks structure. It front-loads the key concept ('health score') but fails to elaborate with a second sentence about dimensions or context.

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

Completeness2/5

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

Given no output schema and no annotations, the description is incomplete for a tool with 2 parameters and a complex concept (6-dimension score). It does not hint at return format, use of dimensions, or what 'deterministic' implies operationally.

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?

Schema coverage is 50%: 'dimensions' has a description in schema, but 'user_id' lacks description. The tool description does not add meaning beyond the schema. At 50% coverage, the description should compensate but doesn't explain the role of user_id.

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

Purpose3/5

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

The description 'Runs the deterministic 6-dimension health score' indicates the tool produces a health score, but 'runs' is vague and doesn't specify the resource (user) or the nature of the score. It distinguishes from siblings like 'calculate' only by mentioning '6-dimension', but purpose is incomplete.

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

Usage Guidelines2/5

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 alternatives like 'calculate' or 'get_safe_to_spend'. No exclusions or context provided. The description leaves the agent without any usage direction.

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

convert_temperatureC

Convert temperature units based on file content or direct input. Supports Celsius (C) and Fahrenheit (F).

ParametersJSON Schema
NameRequiredDescriptionDefault
valueNoTemperature value to convert
to_unitNoUnit to convert to (C or F)
file_nameYesName of the uploaded file
file_typeYesMIME type of the uploaded file
from_unitNoUnit to convert from (C or F)
file_contentYesBase64 encoded file content. Will be injected by system.

TDQS

C2.9/5.0
Behavior2/5

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

No annotations provided, so description carries full burden. It only states 'convert temperature units' without disclosing side effects, permission requirements, or behavior regarding file content (e.g., whether it modifies files). Minimal behavioral context.

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?

Two sentences, concise and front-loaded. Every word serves a purpose without redundancy.

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

Completeness2/5

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

With 6 parameters and no output schema, the description is too sparse. It does not explain the role of file parameters (required) or the output format, leaving ambiguity for an agent.

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?

Schema coverage is 100%, so baseline is 3. The description adds only that it supports C and F, which is already in the enum descriptions. It does not explain how file_content is used or how direct input works, adding marginal value.

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

Purpose4/5

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

The description clearly states the tool converts temperature units between Celsius and Fahrenheit, and mentions both file content and direct input. It is specific in verb and resource, but does not explicitly distinguish from sibling tools, which are largely unrelated.

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

Usage Guidelines2/5

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

No guidance on when to use this tool over alternatives, nor when to use file content versus direct input. The description lacks any when-to-use or when-not-to-use instructions.

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

fetch_account_summaryA

Fetches live balance, account type, and linked instruments for a user's connected bank account. Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
bank_idYesRegistered bank identifier, e.g. 'SBI', 'HDFC'
user_idYesInternal user UUID
account_idNoOptional. If omitted, returns all accounts under this bank.

TDQS

A3.9/5.0
Behavior3/5

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

States 'Read-only' and 'live balance' indicating no mutation and real-time data, but lacks details on rate limits, authentication needs, error handling, or data freshness. With no annotations, description carries full burden but provides only minimal behavioral context.

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?

Single sentence, front-loaded with action and resource. No wasted words, efficient and clear.

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?

No output schema, so description should detail return structure. Lists three components but doesn't specify if response is single object or array for multiple accounts. Lacks error conditions or pagination info. Adequate but not fully complete.

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?

Description adds meaning beyond the input schema by specifying the returned data (balance, account type, linked instruments). Schema has 100% coverage, so baseline is 3; the additional context justifies a 4.

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?

Description clearly states verb 'fetches', resource 'account summary', and scope 'live balance, account type, and linked instruments'. Distinguishes from sibling tools like fetch_transaction_stream and classify_transaction_batch.

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?

Implied usage for fetching account summary but no explicit guidance on when to use this tool vs alternatives like fetch_transaction_stream. No exclusions or alternative tool names mentioned.

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

fetch_transaction_streamB

Fetches raw transaction logs for a date range for classification and ingestion into Supabase.

ParametersJSON Schema
NameRequiredDescriptionDefault
cursorNoPagination token for large ranges
user_idYes
end_dateYesDate string YYYY-MM-DD
account_idYes
start_dateYesDate string YYYY-MM-DD

TDQS

B3.2/5.0
Behavior2/5

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

No annotations provided, so description must disclose behavior. It mentions fetching logs but does not state if read-only, pagination behavior (cursor hinted at in schema only), rate limits, or potential performance impacts for large ranges.

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

Conciseness4/5

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

Single sentence, front-loaded with action, no wasted words. Could be slightly improved by structuring multiple aspects, but remains efficient for its length.

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

Completeness2/5

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

No annotations, no output schema, and 5 parameters with incomplete descriptions. Missing details on return format, pagination handling, and prerequisites. The description alone is insufficient for reliable tool selection.

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

Parameters2/5

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

Schema coverage is 60% with descriptions for start_date, end_date, cursor. Description adds 'date range' interpretation but does not clarify the required user_id and account_id fields. Fails to fully compensate for missing schema descriptions.

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?

Description clearly states verb 'Fetches', resource 'raw transaction logs', scope 'for a date range', and purpose 'for classification and ingestion'. Differentiates from sibling tools like classify_transaction_batch and fetch_account_summary.

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?

Implies usage for raw transaction logs prior to classification/ingestion, but lacks explicit when-to-use or when-not-to-use guidance. No alternatives mentioned, leaving the agent to infer from context.

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

get_safe_to_spendC

Calculates the user's current safe-to-spend threshold.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYes

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations provided, the description must fully convey behavioral traits. It only states 'calculates', implying a read operation, but does not disclose whether it requires authorization, is rate-limited, or has any side effects. For a non-annotated tool, this is insufficient.

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

Conciseness3/5

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

The description is a single sentence with no redundancy, but it is too brief to be considered well-sized. Essential details about usage and parameters are omitted, making it concise at the cost of completeness.

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

Completeness2/5

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

Given the tool's simplicity (one parameter, no output schema, no annotations), the description should still clarify the concept of 'safe-to-spend threshold' and any computational context. It fails to provide sufficient information for reliable agent invocation.

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

Parameters1/5

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

Schema description coverage is 0%, and the description adds no information about the single parameter 'user_id'. The agent receives no hints about its format, purpose, or constraints beyond the schema's type declaration.

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

Purpose4/5

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

The description uses a specific verb 'calculates' and identifies the resource 'user's current safe-to-spend threshold', clearly indicating the tool's function. It distinguishes from generic siblings like 'calculate' and 'fetch_account_summary' via the specific concept of safe-to-spend. However, it does not define what 'safe-to-spend' means, which could be ambiguous.

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

Usage Guidelines2/5

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. Siblings like 'fetch_account_summary' or 'compute_financial_dna_score' might overlap, but the description offers no exclusion criteria or context for selection.

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

ingest_financial_documentB

Parses an uploaded PDF into structured JSON entities and stages them for graph ingestion.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYes
file_refYesStorage pointer/URL to the uploaded document
document_typeYes

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so description must carry behavioral disclosure. It states the core action and side effect ('stages them for graph ingestion') but lacks details on idempotency, error handling, or permissions. Adequate 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.

Conciseness4/5

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

Single sentence, 12 words, front-loaded key information. Very concise, but could benefit from slight expansion to cover usage context or parameter hints without losing efficiency.

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

Completeness2/5

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

Tool has three required params, no output schema, and no annotations. Description is too brief to cover return values, error scenarios, or integration with sibling tools. Incomplete for a production-grade agent.

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

Parameters2/5

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

Schema coverage is only 33% (only file_ref has a description). Description does not explain user_id or document_type beyond what enums or schema provide. Fails to compensate for low coverage, leaving the agent guessing about parameter meanings.

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?

Description clearly states verb ('parses'), resource ('uploaded PDF'), and result ('structured JSON entities staged for graph ingestion'). Distinguishes from sibling tools that are for retrieval, analytics, or graph manipulation. No ambiguity.

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?

Implies usage for ingesting new documents before graph ingestion, but does not explicitly state when to use this tool versus alternatives like fetch_account_summary or upsert_graph_node. Could be improved with contextual cues.

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

upsert_graph_nodeC

Creates or updates a node in the Neo4j Identity & Context Graph.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYes
node_typeYes
propertiesYesKey-value attributes for this node
relationshipYesRelationship label, e.g. 'HAS_GOAL'

TDQS

C2.8/5.0
Behavior2/5

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

Without annotations, the description bears full responsibility for behavioral disclosure. It only indicates mutation ('creates or updates') but does not mention idempotency, side effects, error conditions, or authorization requirements, leaving significant gaps.

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

Conciseness2/5

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

Although the description is a single sentence and thus concise in length, it omits crucial details about parameters and behavior, making it under-specified rather than effectively concise.

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

Completeness2/5

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

Given the tool's complexity (upsert operation, 4 parameters including a nested object, no output schema, and no annotations), the description is insufficient to fully understand the tool's behavior, constraints, or return value.

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

Parameters2/5

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

The schema covers only 50% of parameters with descriptions (properties and relationship), but the description adds no additional meaning or constraints. For instance, 'user_id' and 'node_type' remain undocumented both in schema and description, and the format of 'properties' is not elaborated.

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 action ('Creates or updates') and the resource ('node in the Neo4j Identity & Context Graph'), and this tool is distinct from siblings which focus on calculations, financial data, and classification rather than graph operations.

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

Usage Guidelines2/5

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, nor are there any conditions or prerequisites mentioned. The description simply states the function without usage context.

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. 9 tool updatesv1.0.0
    • First observedcalculate
    • First observedclassify_transaction_batch
    • First observedcompute_financial_dna_score
    • First observedconvert_temperature
    • First observedfetch_account_summary
    • First observedfetch_transaction_stream
    • First observedget_safe_to_spend
    • First observedingest_financial_document
    • First observedupsert_graph_node

TDQS

C2.9/5.0
Disambiguation4/5

Each tool has a distinct purpose, but 'calculate' and 'compute_financial_dna_score' both involve computation, potentially causing confusion. Descriptions clarify differences, so overlap is minimal.

Naming Consistency4/5

Most names follow a verb_noun pattern in snake_case. 'calculate' deviates by being just a verb, but overall consistency is high.

Tool Count3/5

9 tools is reasonable for a financial management server, but the server name 'Calculator MCP Server' implies a narrower scope, making the count feel oversized.

Completeness2/5

The tool set mixes unrelated domains (calculator, temperature, finance) and lacks essential CRUD operations for a cohesive financial system, leaving significant gaps.

Maintenance

ActivitySlowing
ResponsivenessSyncing

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    This MCP server provides calculator tools, resources, and prompts for arithmetic operations, and serves as a minimal template for learning NitroStack fundamentals.
    -
  • F
    license
    A
    quality
    C
    maintenance
    A minimal NitroStack starter template with a calculator module including tools, resources, and prompts for learning MCP server fundamentals.
    4
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    A minimal MCP server template for learning NitroStack fundamentals, featuring a calculator module with tools, resources, and prompts.
    -
  • F
    license
    A
    quality
    C
    maintenance
    A starter template for building calculator-focused MCP servers using NitroStack, including tools, resources, and prompts.
    6
    88
    -

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/Tarika06/mcp-server'

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