NitroStack Calculator MCP Server
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., "@NitroStack Calculator MCP Servercalculate 5 + 3"
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.
NitroStack Starter Template
Minimal template for learning NitroStack fundamentals with a calculator-focused MCP server and basic widgets.
What This Template Includes
calculatormodule with tools, resources, and promptsTypeScript + 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 devCommon Commands
npm run dev
npm run build
npm startNitroStudio
NitroStudio is the recommended way to test and debug this template during development.
Download: https://nitrostack.ai/studio
Studio: https://nitrostack.ai/studio
Links
Templates docs: https://docs.nitrostack.ai/templates/01-starter-template
Main repository: https://github.com/nitrocloudofficial/nitrostack
Community
Available Tools
9 toolscalculateC
Perform basic arithmetic calculations
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First number | |
| b | Yes | Second number | |
| operation | Yes | The operation to perform |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| transactions | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| dimensions | No | Optional subset; omit to recompute all six |
TDQS
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Temperature value to convert | |
| to_unit | No | Unit to convert to (C or F) | |
| file_name | Yes | Name of the uploaded file | |
| file_type | Yes | MIME type of the uploaded file | |
| from_unit | No | Unit to convert from (C or F) | |
| file_content | Yes | Base64 encoded file content. Will be injected by system. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| bank_id | Yes | Registered bank identifier, e.g. 'SBI', 'HDFC' | |
| user_id | Yes | Internal user UUID | |
| account_id | No | Optional. If omitted, returns all accounts under this bank. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination token for large ranges | |
| user_id | Yes | ||
| end_date | Yes | Date string YYYY-MM-DD | |
| account_id | Yes | ||
| start_date | Yes | Date string YYYY-MM-DD |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| file_ref | Yes | Storage pointer/URL to the uploaded document | |
| document_type | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| node_type | Yes | ||
| properties | Yes | Key-value attributes for this node | |
| relationship | Yes | Relationship label, e.g. 'HAS_GOAL' |
TDQS
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.
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.
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.
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.
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.
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.
9 tool updates
v1.0.0- First observed
calculate - First observed
classify_transaction_batch - First observed
compute_financial_dna_score - First observed
convert_temperature - First observed
fetch_account_summary - First observed
fetch_transaction_stream - First observed
get_safe_to_spend - First observed
ingest_financial_document - First observed
upsert_graph_node
TDQS
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.
Most names follow a verb_noun pattern in snake_case. 'calculate' deviates by being just a verb, but overall consistency is high.
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.
The tool set mixes unrelated domains (calculator, temperature, finance) and lacks essential CRUD operations for a cohesive financial system, leaving significant gaps.
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
Educational MCP server with 17 math/stats tools, visualizations, and persistent workspace
This MCP server enables users to perform scientific computations regarding linear algebra and vect…
An MCP server for deep research or task groups
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceThis MCP server provides calculator tools, resources, and prompts for arithmetic operations, and serves as a minimal template for learning NitroStack fundamentals.-
- FlicenseAqualityCmaintenanceA minimal NitroStack starter template with a calculator module including tools, resources, and prompts for learning MCP server fundamentals.4-
- FlicenseNot gradedqualityCmaintenanceA minimal MCP server template for learning NitroStack fundamentals, featuring a calculator module with tools, resources, and prompts.-
- FlicenseAqualityCmaintenanceA starter template for building calculator-focused MCP servers using NitroStack, including tools, resources, and prompts.688-
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/Tarika06/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server