株式会社一創 コーポレートサイト
Server Details
株式会社一創(issoh.co.jp)の技術記事・サービス・制作実績を検索できる MCP サーバー。システム開発・AI・クラウド・Web 制作の日本語情報
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool targets a distinct concern: article retrieval, company info, article search, case study search, and service search. Even get_article and search_articles are clearly separated as fetch-content vs discover-content.
All tools follow a consistent verb_noun pattern: get_ for retrieval actions and search_ for discovery actions. The naming is predictable and makes the toolset easy to navigate.
Five tools is well-scoped for a corporate information site. Each tool covers a necessary access pattern without redundancy or bloat.
The surface covers the core needs: reading articles, searching articles, exploring case studies, listing services, and obtaining company/contact information. There are no obvious dead ends for answering typical visitor questions.
Available Tools
5 toolsget_article記事の本文を取得するAInspect
Fetch the full text of one issoh.co.jp article by URL or by id. Accepts URLs such as https://www.issoh.co.jp/column/details/16170/ or https://www.issoh.co.jp/tech/details/16216/. HTML is stripped and the body is truncated at 15000 characters.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | 記事ID(url を使う場合は不要) | |
| url | No | 記事URL(id を使う場合は不要) | |
| post_type | No | id 指定のときの投稿タイプ。url 指定なら不要 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that HTML is stripped and output is truncated at 15000 characters. Lacks mention of potential network latency or error behavior, but since no annotations exist, these details are adequately covered.
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 concise sentences with no redundancy. Purpose and key constraints are front-loaded, making it easy to scan.
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 simplicity of the tool, description covers how to call it, what it returns, and output formatting. Missing details like error handling are not critical for this read-only operation, and no output schema is provided, so the described behavior is sufficient.
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 descriptions are in Japanese; the tool description provides English equivalents and clarifies usage with examples (URLs and IDs). Adds value beyond the schema by making parameters more accessible and confirming mutual exclusivity implicitly.
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 tool fetches full text of a single article from issoh.co.jp, distinguishing it from search tools by specifying 'full text' and 'one article'.
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?
Explicitly mentions acceptance by URL or ID, and provides URL examples. However, it does not explicitly contrast with sibling search tools, though the naming implies the difference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_info会社情報と問い合わせ先を取得するAInspect
Return the company profile of 株式会社一創 and the canonical URLs for services, portfolio and the contact form. Use this when the user asks who they are or how to contact / request a quote.
| 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 carries full responsibility. It indicates a read-only retrieval ('Return...') but doesn't disclose potential caveats like rate limits, failure modes, or whether the URLs are consistently canonical across scenarios. The absence of annotations lowers the score, though the action is simple and likely side-effect-free.
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 concise sentences: the first states what it does, the second states when to use it. No filler or redundant information. Effectively front-loaded and well-structured.
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 simplicity (0 params, no output schema, no annotations), the description adequately covers the tool's purpose and usage. It doesn't describe the exact return format, but for a simple company info tool, that may be unnecessary. Could benefit from mentioning the structure of the returned data, but overall sufficient.
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?
Tool has 0 parameters, which meets the baseline of 4. The description correctly implies no input is needed, and there is nothing to explain about parameters. The schema coverage is 100% trivially since no properties exist.
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 returns the company profile of 株式会社一創 and canonical URLs for services, portfolio, and contact form. It distinguishes from sibling tools like get_article and search_services by focusing on company info and contact URLs rather than content retrieval.
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?
Explicitly states when to use: 'Use this when the user asks who they are or how to contact / request a quote.' This provides clear triggers and implies alternatives (search tools for content) without listing them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articles記事を検索するAInspect
Search Japanese articles published on issoh.co.jp (株式会社一創). Covers system development, AI/LLM, cloud (AWS/Azure/GCP), security, and web. "column" = business/decision-maker oriented, "tech" = implementation oriented. Returns titles, URLs and excerpts. Call get_article afterwards to read the full text.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 返す件数(1〜20、既定5) | |
| query | Yes | 検索キーワード(日本語可)。例: "コンテナ オーケストレーション", "RAG 精度" | |
| post_type | No | any=両方 / column=発注者向け / tech=実装者向け | any |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the output format ('Returns titles, URLs and excerpts') and indicates it does not return full content by directing to get_article. However, it does not explicitly state that the operation is read-only or has no side effects, though this is implied by its nature.
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 succinct and well-structured: it states the purpose, lists topics, clarifies terminology, mentions return fields, and gives a follow-up instruction. Every sentence adds value without 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?
For a search tool, the description provides sufficient context: source domain, topic categories, term definitions, return format, and next step. It could mention pagination or sorting, but these are not critical for the tool's primary purpose.
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 description adds semantic meaning beyond the schema, particularly for the post_type parameter (defining 'column' and 'tech' orientations) and clarifies the scope of the query. This complements the schema descriptions, which are clear but laconic.
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: 'Search Japanese articles published on issoh.co.jp' with explicit topic coverage and clarification of the 'column' vs 'tech' distinction. This is a specific verb+resource+scope that effectively distinguishes it from other search tools.
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 a workflow hint ('Call get_article afterwards') but does not explicitly state when to use this tool over sibling search tools (search_case_studies, search_services). It implies usage based on the content type, but lacks direct comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_case_studies制作実績・導入事例を検索するAInspect
Search the published project portfolio (制作実績) and customer references (導入企業の声) of 株式会社一創. Use this to answer "do they have experience with X?" style questions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 返す件数(1〜20、既定8) | |
| query | No | 検索キーワード。省略すると新しい順に一覧する |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral transparency burden. It communicates that the operation is a read-only search over published materials, which is useful. However, it does not mention ordering behavior, pagination, result format, permissions, or any constraints beyond the schema-provided limit semantics.
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 two concise sentences with no filler. The first sentence states exactly what is searched and by whom, and the second sentence gives a concrete usage example, making it easy to parse quickly.
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 simple read-only search tool with two fully documented parameters and no output schema, the description covers the essential context: content domain, entity, and typical user intent. It does not describe the shape of returned items, but that is a minor gap given the low 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 description coverage is 100%: both `query` and `limit` are already described in the input schema, including default and range for `limit`. The description adds no parameter-specific meaning, so the baseline of 3 applies.
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-resource pair: 'Search the published project portfolio (制作実績) and customer references (導入企業の声)' of the named company. It also clarifies the intended question type ('do they have experience with X?') and distinguishes the tool from siblings like search_services and search_articles by content domain.
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 explicitly says when to use the tool: 'Use this to answer "do they have experience with X?" style questions.' It does not explicitly name alternatives or exclusions, but the use case is clear enough for an agent to make a reasonable selection among sibling search tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_servicesサービスを検索するAInspect
Search the services offered by 株式会社一創 (system development, AI, web, DX consulting, infrastructure). Use this when the user is looking for a development vendor, a quote, or a partner for a specific technology. Omit the query to list every service.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 返す件数(省略時は10。全件見るときは大きめの値を渡す) | |
| query | No | 検索キーワード。省略すると全サービスを一覧する。例: "OCR", "SEO", "AWS" |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It does mention query omission behavior, but it does not address pagination/limit interplay or return format. The phrase 'list every service' is potentially misleading given the limit default of 10, though the schema itself carries a similar inconsistency.
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 two sentences with no filler. It front-loads the core action and resource, then provides targeted usage guidance and a key query-omission behavior. 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?
This is a simple, low-parameter search tool with a fully documented schema, so the description is largely complete. It covers purpose, typical use cases, and query omission. Lack of output schema is acceptable for a list-returning search tool, though a brief mention of return type would strengthen it.
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 100%, so the baseline is 3. The description adds use-case context but does not materially enrich the meaning of 'query' or 'limit' beyond what the schema already documents. The category list in the description helps with query formulation but is not parameter-specific.
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 ('Search') and a clear resource ('services offered by 株式会社一創') with concrete categories. It also distinguishes itself from sibling tools like search_articles and search_case_studies by focusing on services.
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 gives explicit context: 'Use this when the user is looking for a development vendor, a quote, or a partner for a specific technology.' It does not explicitly contrast with sibling search tools, but the service scope is clear enough for differentiation.
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
- First observed
get_article - First observed
get_company_info - First observed
search_articles - First observed
search_case_studies - First observed
search_services
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
日本法リサーチMCP。e-Gov全法令の検索・条文取得、委任先解決、裁判例検索、国会会議録、改正沿革、官公庁一次資料(PDF/HTML)の本文読取・読み起こし全文までこれ1本で
SEO対策研究室(柏崎剛)の公開情報を検索・取得できる読み取り専用サーバー。出典は canonical URL に固定。
AIとのやり取りで生成したHTML/Markdown/プレーンテキストのクリップを一覧取得・参照・作成・更新できるMCPサーバー。
ドメインの設定を調べる MCP サーバー。SPF / DKIM / DMARC・DNS・SSL 証明書・セキュリティヘッダ・サブドメイン・類似ドメインを、公開情報だけで確認します。登録不要・無料。
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server for web crawling, searching, and AI-powered content extraction, supporting single-page, batch, and full-site crawling along with text, news, image, book, and video search.82MIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that provides AI-powered document processing and search capabilities, including PDF summarization, text extraction, metadata retrieval, and web search via Google Custom Search.-
- AlicenseAqualityDmaintenanceMCP server for searching and retrieving Japanese laws from the e-Gov API, enabling natural language queries for legal information.313MIT
- AlicenseNot gradedqualityFmaintenanceCrawl4AI MCP Server is an intelligent information retrieval server offering robust search capabilities and LLM-optimized web content understanding, utilizing multi-engine search and intelligent content extraction to efficiently gather and comprehend internet information.153MIT