Skip to main content
Glama
astrodevit-creator

mcp-server-skeleton

mcp-server-skeleton

最小限の**Model Context Protocol (MCP)**サーバースケルトン — 標準ライブラリのみ (stdio上のJSON-RPC 2.0)。コアハンドシェイク(initializetools/listtools/call)を実装しているので、外部依存ゼロで独自ツールを 登録できます。Shopify / Meta Ads / Supabase / n8n を組み込んで、Claude、Cursor、Codex、Gemini、Hermes に公開できます。

オリジナルプロジェクト。「Agent Skills / MCP」トレンドに沿ったもの。また別の MCP ディレクトリ ではなく、拡張して使う実行可能サーバーです。

ツールの登録

from mcp_server import MCPServer

server = MCPServer("my-tools", "0.1.0")
server.register_tool(
    "add", "Add two numbers",
    {"type": "object", "properties": {"a": {"type": "number"}, "b": {"type": "number"}}},
    lambda args: str(args["a"] + args["b"]),
)
server.serve_stdio()

Related MCP server: mcpserve-py

テスト

pip install -e ".[dev]"
pytest

ライセンス

MIT — LICENSE を参照してください。


リンク

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Exposes SQLite database query tools and markdown document resources over JSON-RPC 2.0 stdio transport, enabling AI assistants to read and search documents and execute read-only SQL queries.
    1
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    Exposes self-owned AI agent plugins as tools to Claude Code via a stdio MCP server, allowing Claude to call system info, calculator, or scribe transcriber directly.
    3
    MIT
  • F
    license
    A
    quality
    C
    maintenance
    A minimal starting point for a Model Context Protocol server with stdio transport and one tool, enabling quick setup and custom tool addition.
    1

View all related MCP servers

Related MCP Connectors

  • Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.

  • Runtime permission, approval, and audit layer for AI agent tool execution.

  • Agent registry with Nostr identity, reputation, escrow, observability, and Lightning payments.

View all MCP Connectors

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/astrodevit-creator/mcp-server-skeleton'

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