Skip to main content
Glama
sla10132000

mcpscope

by sla10132000

mcpscope

A simple local MCP (Model Context Protocol) server built with fastmcp.

Tools

Tool

Description

Parameters

say_hello

名前を受け取って挨拶を返す

name: str

add

2つの整数を足し算する

a: int, b: int

Requirements

  • Python 3.12+

  • uv

Setup

# Clone the repository
git clone https://github.com/sla10132000/mcpscope.git
cd mcpscope

# Install dependencies
uv sync

Running the server

uv run python server.py

Using with Claude Code

Add the following to your .mcp.json:

{
  "mcpServers": {
    "mcpscope": {
      "command": "uv",
      "args": ["run", "python", "server.py"],
      "cwd": "/path/to/mcpscope"
    }
  }
}

Replace /path/to/mcpscope with the actual path to your clone.

Adding new tools

Open server.py and add a decorated function:

@mcp.tool()
def your_tool(param: str) -> str:
    """ツールの説明"""
    return f"result: {param}"

fastmcp automatically exposes it as an MCP tool — no further registration needed.

F
license - not found
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

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/sla10132000/mcpscope'

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