Intelagent MCP Template
Click on "Deploy 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., "@Intelagent MCP Templatecount the words in 'The Model Context Protocol is amazing'"
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.
My MCP Server
A Model Context Protocol server built with @opafex/mcp-shared.
Quick Start
npm install
npm run build
npm startRelated MCP server: MCP Template
Add to Claude Code
Create .mcp.json in your project root:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["path/to/dist/index.js"]
}
}
}Tools
Tool | Description |
| Reverse a string |
| Count words and characters |
| Server metadata and health check |
Development
npm run dev # Run with tsx (no build needed)
npm run build # Compile TypeScript
npm test # Run tests
npm run test:watch # Watch modeAdding a New Tool
Define types in
src/types.tsAdd business logic to a service in
src/services/Define the tool in
src/tools/using theToolDefinitioninterfaceWire it up in
src/index.tsAdd tests in
tests/
See the enrichment MCP for a full production example.
License
MIT
Available Tools
3 toolsreverse_stringA
Reverse a string. Returns the original text, reversed text, and character count.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The text to reverse |
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 compensates for the missing output schema by documenting the return structure (original text, reversed text, character count), but omits other behavioral traits like idempotency, safety guarantees, or error conditions.
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 with zero waste: the first defines the action, the second discloses return values. Information is front-loaded and appropriate for the tool's simplicity. Every sentence 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 single-parameter utility without annotations or output schema, the description is complete. It adequately compensates for the missing output schema by detailing the three return fields, providing sufficient context for an agent to invoke the tool correctly.
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 input schema has 100% description coverage ('The text to reverse'), establishing a baseline of 3. The description adds no additional parameter context (examples, format constraints, validation rules) 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 states a specific verb ('Reverse') and resource ('string'), clearly distinguishing it from sibling tools: server_info (metadata) and word_count (counting). The first sentence precisely defines the tool's function.
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 through the specific purpose statement ('Reverse a string'), but provides no explicit when-to-use guidance, prerequisites, or comparison to alternatives like word_count. The agent must infer appropriateness from the function name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
server_infoA
Returns server metadata: name, version, registered tools, and registered resources. Useful for introspection and health checks.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 what data is returned but omits safety characteristics (read-only vs destructive), caching behavior, or performance implications that would help an agent understand operational constraints.
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 well-structured sentences with zero waste. First sentence front-loads the action and return values; second sentence provides usage context. Every word 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?
Given the tool's simplicity (no parameters) and lack of output schema, the description adequately compensates by enumerating the returned metadata fields. Could improve by noting whether data is cached or real-time, but sufficient for agent 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?
Input schema contains zero parameters, establishing a baseline of 4 per evaluation rules. No parameter explanation is required or provided.
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 specific verb 'Returns' with concrete resource details (server metadata: name, version, registered tools, resources). It clearly distinguishes this introspection tool from string-manipulation siblings like reverse_string and word_count.
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?
States it's 'Useful for introspection and health checks,' providing implied context for usage. However, it lacks explicit when-to-use comparisons against alternatives or conditions 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.
word_countA
Count words and characters in a string. Optionally count unique words.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The text to analyse | |
| unique | No | Count unique words only (default: false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses core functionality (counting words/characters) and the unique word option, but omits details about word tokenization rules, case sensitivity, or idempotency/safety characteristics.
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?
Extremely efficient two-sentence structure. First sentence establishes primary function; second sentence covers optional behavior. No redundant or filler content—every word 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?
Given the low complexity (2 primitive parameters, no nested objects) and absence of output schema, the description adequately covers intent but would benefit from specifying the return structure (e.g., object with word_count and char_count fields).
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 clear descriptions for both 'text' and 'unique' parameters. Description adds minimal semantic value beyond schema, only mapping 'optionally count unique words' to the boolean flag, which aligns with baseline expectations for fully documented schemas.
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 the specific action (count) and resources (words, characters) with scope (unique words optional). Distinct from sibling 'reverse_string' (transformation) and 'server_info' (metadata).
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 explicit when-to-use or when-not-to-use guidance provided. However, the tool's purpose is self-evident from the name and description, providing implied usage context without explicit alternative recommendations.
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.
3 tool updates
v0.1.0- First observed
reverse_string - First observed
server_info - First observed
word_count
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: reverse_string manipulates string order, word_count analyzes string content, and server_info provides metadata. There is no overlap in functionality, making tool selection unambiguous.
All tool names follow a consistent snake_case pattern with clear verb_noun structure (reverse_string, server_info, word_count). The naming is predictable and readable throughout the set.
With only 3 tools, the set feels thin for a general-purpose 'Intelagent MCP Template' server, suggesting limited scope or utility. However, the count is not extreme and could be appropriate for a minimal template.
For a template server, the tools cover basic string operations and introspection, but there are notable gaps in common utility functions (e.g., text formatting, mathematical operations). The surface is functional but incomplete for broader agent tasks.
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
A Model Context Protocol server for Wix AI tools
Related MCP Servers
- FlicenseBqualityDmaintenanceA template MCP server that provides a basic structure and configuration for building Model Context Protocol servers. Includes Docker support, environment configuration, and examples for both STDIO and SSE transport modes.1-
- AlicenseBqualityDmaintenanceA template repository for building Model Context Protocol (MCP) servers that enable LLM clients to interact with custom tools and services through standardized JSON-RPC communication.3MIT
- FlicenseNot gradedqualityDmaintenanceA template project for quickly building Model Context Protocol (MCP) servers using TypeScript and the official SDK. It includes pre-configured examples for tools and resources to help developers jumpstart their custom MCP server development.47 npm-
- FlicenseNot gradedqualityDmaintenanceA boilerplate template for developing Model Context Protocol (MCP) servers, providing a structured framework for defining tools, resources, and prompts.-