Skip to main content
Glama
ramsrk7

Project TTV MCP

by ramsrk7

Project TTV MCP

This repository contains instructions for setting up and running an MCP service that can be published to PyPI.

Setup Instructions

1. Initialize UV Environment

uv init --build-backend "hatchling"
uv add "mcp[cli]"

2. Create Project Structure

touch src/project_ttv_mcp/project_ttv_mcp.py

Related MCP server: Hello World MCP Server

Package Development

To turn this MCP service into a Python package that can be published to PyPI:

  1. Update __init__.py to include a main() function that runs MCP

  2. Create a __main__.py script that calls the main function and serves as an entry point

Running the Service

Local Development

You can run this MCP service as a module using either of these methods:

uv run -m project-ttv-mcp

Configuration Options

Local Configuration

{
  "mcpServers": {
    "Demo": {
      "command": "uv",
      "args": [
        "--directory",
        "/Users/ram/Documents/mcp-stdio",
        "run",
        "-m",
        "project_ttv_mcp"
      ]
    }
  }
}

GitHub Repository Configuration

Using uvx to install dependencies in a temporary environment:

{
  "mcpServers": {
    "Demo": {
      "command": "uvx",
      "args": [
        "git+https://github.com/ramsrk7/mcp-stdio"
      ]
    }
  }
}

Available Tools

1 tool
addA
Function to add two numbers
a: int
b: int
Returns sum
ParametersJSON Schema
NameRequiredDescriptionDefault
aYes
bYes

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses the function's behavior and its return value ('Returns sum'). For a pure arithmetic operation, this is fully transparent. No additional behavioral traits like side effects or permissions are relevant.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, using brief statements for the operation, parameters, and return value. Every element serves a purpose with no extraneous text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity, the description is complete. It covers the operation, parameters, and return value, and no output schema is needed to understand the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description lists 'a: int' and 'b: int', which simply repeats the input schema's type information without adding semantic meaning beyond labeling them as numbers. The schema coverage is 0%, so the description does not compensate for the lack of parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Function to add two numbers' which clearly identifies the verb (add) and resource (two numbers). It is specific and unambiguous, though it doesn't need to differentiate from siblings as none exist.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description doesn't explicitly state when to use this tool, but the phrase 'Function to add two numbers' implies the use case is whenever addition is needed. There are no alternatives or exclusions mentioned, which is acceptable given the simplicity of the function.

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.

  1. 1 tool updatev0.1.0
    • First observedadd

TDQS

A4/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion between tools. The purpose of 'add' is clear and distinct from any hypothetical alternatives, so agents can easily select it.

Naming Consistency5/5

The tool name 'add' is a clear, action-oriented verb that accurately describes its function. Although there is no noun component, the convention is consistent across the single tool, making it predictable.

Tool Count1/5

A single 'add' function is an extreme mismatch for an MCP server, which typically provides a coherent set of tools. The server appears to be a trivial utility with no broader scope.

Completeness1/5

The server offers only addition, with no support for other arithmetic operations like subtraction, multiplication, or division. This is a severely incomplete surface for any arithmetic or project-related purpose.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    A basic starter project for building Model Context Protocol (MCP) servers that enables standardized interactions between AI systems and various data sources through secure, controlled tool implementations.
    2
    -
  • -
    license
    C
    quality
    Not graded
    maintenance
    A simple boilerplate MCP server that provides a basic greeting tool for demonstration purposes. Serves as a starting template for developers to quickly create and deploy custom MCP servers.
    1
    16
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    A minimal, well-structured starter template for building Model Context Protocol (MCP) servers using Python and the FastMCP framework. It includes boilerplate for tools, testing setup, and modern Python packaging to accelerate server development.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Production-ready MCP server starter with authentication, observability, and a plugin system for building and deploying MCP servers quickly.
    MIT

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/ramsrk7/mcp-stdio'

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