otskit-mcp
The otskit-mcp server enables AI agents and users to create, manage, verify, and monitor cryptographic Bitcoin timestamps for files and hashes using the OpenTimestamps protocol.
create_timestamp: Stamp a SHA-256 hash on Bitcoin by submitting it to four public OTS calendars (alice.btc, bob.btc, finney, catallaxy), receiving a stamp ID for tracking.stamp_file: Hash a local file and stamp it on Bitcoin in one step — only the hash is sent externally, never the file contents.hash_file: Compute the SHA-256 hash of a local file and return it as a hex string, with no network calls or data stored.upgrade_timestamp: Check whether a pending stamp has been confirmed in Bitcoin by fetching the latest merkle tree from the calendars; safe to call repeatedly.verify_timestamp: Verify a proof against the Bitcoin blockchain via an Esplora API, confirming a hash existed before a specific Bitcoin block height.inspect_timestamp: Read a stored local proof file without any network calls, returning metadata such as attestations and confirmation status.list_pending: Query the local SQLite database for stamps filtered by status (pending, confirmed, failed, timeout), with pagination and age filters.watch: Open a terminal window that continuously monitors pending stamps and attempts upgrades at a configurable interval (minimum 15 minutes).
Enables AI agents to create, upgrade, verify, and inspect Bitcoin timestamps using the OpenTimestamps protocol, providing cryptographic proof of existence for documents at a specific point in time on the Bitcoin blockchain.
@otskit/mcp
OpenTimestamps MCP server - stamp, upgrade, and verify Bitcoin timestamps via AI agents.
Exposes a set of tools to any MCP-compatible agent so it can timestamp documents, monitor confirmation status, and verify proofs against the Bitcoin blockchain - all from a conversation.
Note on confirmation times: After stamping, a proof is
pendinguntil Bitcoin confirms it. Confirmations typically arrive within ~60 minutes, but can take several hours during network congestion. Useots-mcp watchorupgrade_timestampto monitor. A pending proof is not a failed proof.
Install
npm install -g @otskit/mcpRelated MCP server: markovian-mcp
Agent setup
ots-mcp setup claude # Claude Desktop
ots-mcp setup claude-code # Claude Code CLI
ots-mcp setup codex # Codex CLIEach command writes the MCP entry into the agent's config file, makes a .bak backup if the file already exists, and skips if ots-mcp is already configured. Restart the agent afterwards to apply the changes.
CLI commands
Command | Description |
| Start the MCP server (stdio transport) |
| Stamp a SHA-256 hash against Bitcoin calendars |
| Check if a pending stamp has been confirmed |
| Verify a stamp against Bitcoin |
| List stamps ( |
| Monitor pending stamps and attempt due upgrades (default: 30 min, minimum: 15 min) |
| Run one upgrade pass over all pending stamps |
| Manage OS-level scheduler for auto-upgrades |
| Backup the SQLite database |
| Configure MCP for an agent |
MCP tools exposed to agents
Tool | Description |
| Stamp a SHA-256 hash against 4 public OTS calendars |
| Check if a pending stamp has been confirmed in Bitcoin |
| Verify a stamp - proves hash existed before a given Bitcoin block |
| Inspect a stored proof file without network calls |
| List stamps with status, retry count, and filters |
| Open a terminal window monitoring pending stamps and attempting due upgrades |
| Compute the SHA-256 of a local file and return it as a 64-char hex string (no network calls) |
| Compute SHA-256 of a local file and stamp it on Bitcoin in one step |
Data directory
All data is stored in ~/.ots-mcp/:
~/.ots-mcp/
ots-mcp.db # SQLite database (stamps, proof files)
config.json # Optional config overrides
ots-mcp.log # Log fileConfiguration
Create ~/.ots-mcp/config.json to override defaults:
{
"stamp_enabled": true,
"scheduler_interval_minutes": 30,
"retry_max_attempts": 20,
"calendar_timeout_ms": 10000,
"calendars": [
"https://alice.btc.calendar.opentimestamps.org",
"https://bob.btc.calendar.opentimestamps.org",
"https://finney.calendar.eternitywall.com",
"https://btc.calendar.catallaxy.com"
]
}Development
npm run build # production build
npm run dev # watch mode
npm test # run testsDependencies
@otskit/client- OTS calendar client (brings in@otskit/core, the protocol engine)@modelcontextprotocol/sdk- MCP SDKnode-sqlite3-wasm- local database (pure WASM, no native compilation)
Requires Node.js >= 20.
Available Tools
8 toolscreate_timestampA
Creates a verifiable Bitcoin timestamp for a SHA-256 hash using the OpenTimestamps protocol. Submits the hash to four public OTS calendars (alice.btc, bob.btc, finney, catallaxy) and stores a pending proof locally. Returns a stamp ID to track confirmation status. Confirmation typically takes ~60 minutes but can take several hours during network congestion.
| Name | Required | Description | Default |
|---|---|---|---|
| hash | Yes | SHA-256 hex digest (64 chars) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotation set is sparse (only readOnlyHint=false, etc.), but the description adds significant behavioral context: it submits to four specific calendars, stores a pending proof locally, returns a stamp ID, and explains confirmation timing. No contradictions with annotations.
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 four sentences, each serving a clear purpose: definition, implementation details, output, and timing. No filler or repetition.
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?
With only one parameter and no output schema, the description adequately covers the tool's behavior, return value (stamp ID), and timing. It could mention the pending proof status more explicitly, but it is largely complete.
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 schema already describes the hash parameter as 'SHA-256 hex digest (64 chars)'. The description restates this without adding new semantic details, so it meets the baseline for full schema coverage.
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 action (creates a verifiable Bitcoin timestamp), specifies the input (SHA-256 hash), and names the protocol (OpenTimestamps). It distinguishes from sibling tools like inspect_timestamp and verify_timestamp by focusing on creation.
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 when to use this tool (to timestamp a hash) and notes the expected confirmation time. It does not explicitly mention when not to use it or suggest alternatives, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hash_fileARead-onlyIdempotent
Computes the SHA-256 hash of a local file and returns it as a 64-character hex string. Purely local — no network calls, no data stored. Use this to get the hash before calling create_timestamp, or to verify the integrity of a file independently.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute path to the file |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds value beyond annotations by stating 'Purely local — no network calls, no data stored.' This clarifies side effects. Annotations already indicate readOnly, idempotent, non-destructive; description reinforces and provides extra context.
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, front-loaded with main purpose. Every sentence provides useful information with no waste.
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 a simple tool with one parameter, strong annotations, and no output schema, the description covers everything needed: what it returns (hex string), where it works (local), and usage examples. Complete for its 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?
Only one parameter (path) with schema coverage 100%. Schema description already says 'Absolute path to the file'. Description does not add extra meaning beyond that, so baseline 3 is appropriate.
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?
Clearly states the tool computes SHA-256 hash of a local file and returns a 64-character hex string. Distinguishes from siblings by mentioning usage before create_timestamp or for independent verification.
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?
Provides explicit use cases: to get a hash before create_timestamp or for file integrity verification. Does not explicitly state when not to use, but context is clear and no misleading guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inspect_timestampARead-onlyIdempotent
Reads a stored proof file from disk without any network calls. Returns proof metadata including size, number of calendar attestations (pending promises from OTS servers) and Bitcoin attestations (actual confirmed blocks). A stamp is only truly confirmed when bitcoin_attestations > 0 and bitcoin_confirmed is true — calendar_attestations alone do not prove Bitcoin confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | UUID from the stamp record |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds value by stating no network calls and explaining the semantic meaning of calendar vs Bitcoin attestations, which helps the agent understand the tool's behavior.
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, concise and front-loaded with the core action. Every sentence adds value without redundancy.
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 no output schema, the description provides essential return details (size, attestations, confirmation condition). However, it omits potential error cases and a complete list of returned fields. Still, it is adequate for a simple read tool.
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 does not add any information beyond the schema's description of the 'id' parameter. Since schema coverage is 100%, the baseline of 3 is appropriate.
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 reads a stored proof file from disk without network calls, and explains the return metadata. It distinguishes from siblings like create_timestamp or verify_timestamp by focusing on inspection.
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?
While the description implies usage for checking specific stamps locally, it does not explicitly state when to use this tool over alternatives such as verify_timestamp or list_pending. No when-not or alternative names are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_pendingARead-onlyIdempotent
Lists stamp records from the local database with their current status, retry count, and next scheduled upgrade time. Filter by status (pending, confirmed, failed), page through results, or find stamps older than N hours. Use this to monitor the state of all timestamped hashes.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| status | No | ||
| older_than_hours | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds details beyond annotations: it lists the fields returned (status, retry count, next upgrade time) and explains filtering and pagination. Annotations already mark it as read-only and idempotent, and the description aligns. Minor omission: it doesn't mention timeout enum value in the filter list.
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: first defines the output, second gives usage and filter capabilities. No redundant words, front-loaded purpose.
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 no output schema, the description explains return fields (status, retry count, next upgrade time) and all filter parameters. It covers pagination and age filtering, sufficient for a listing tool with read-only annotations.
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 0%, so the description must compensate. It explains the status filter (but misses 'timeout' from enum), pagination via limit/offset, and older_than_hours. However, it does not explain the maximum limit or that offset defaults to 0. This is adequate but not comprehensive.
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 it lists stamp records with status, retry count, and next upgrade time, and mentions filtering capabilities. It distinguishes itself from sibling tools (which are create, verify, etc.) by being a query operation.
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 'Use this to monitor the state of all timestamped hashes,' which provides clear usage context. However, it does not mention when not to use it or alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
stamp_fileA
Convenience tool that hashes a local file and stamps it on Bitcoin in one step. Computes the SHA-256 of the file, then submits it to four public OTS calendars. The file contents are never sent externally — only the hash is. Returns a stamp ID for tracking confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute path to the file to stamp |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate it is not read-only (readOnlyHint=false). The description adds context: it computes SHA-256, submits to four public OTS calendars, and confirms file contents are never sent. It also mentions returning a stamp ID for tracking, which goes beyond annotations.
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 concise (three sentences) and front-loaded with the main purpose. Every sentence provides value: the one-step nature, the hash algorithm, calendar count, privacy guarantee, and output. No wasted words.
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 tool with one parameter and no output schema, the description covers the process (hash, submission, privacy) and the return value (stamp ID). It is complete enough for the agent to understand what happens and what to expect.
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?
With schema coverage at 100%, the single 'path' parameter is fully described in the schema (absolute path). The description adds no additional meaning beyond 'file to stamp'. Baseline 3 is appropriate since schema does the heavy lifting.
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 it hashes a local file and stamps it on Bitcoin in one step. It specifies the action (SHA-256 hash, submission to OTS calendars) and the resource (file). This distinguishes it from siblings like hash_file (which only hashes) and create_timestamp (which stamps a hash).
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 as a convenience tool when you want to hash and stamp in one step. It notes that file contents are not sent externally, which is a safety guideline. However, it does not explicitly state when not to use this tool or mention alternatives (e.g., using hash_file then create_timestamp separately).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upgrade_timestampAIdempotent
Attempts to upgrade a pending OpenTimestamps proof by fetching the latest merkle tree from the calendars. If Bitcoin has included the timestamp, the proof becomes confirmed and the bitcoin_block is recorded. Safe to call repeatedly — if not yet confirmed, it schedules the next retry automatically.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | UUID from the stamp record |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotency, but the description adds valuable context: the automatic retry scheduling and the recording of bitcoin_block upon confirmation. It confirms non-destructiveness and safe repetition. Could mention that it may trigger network requests.
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, each earning its place: first explains the core action, second covers safety and retry behavior. Front-loaded with the key action. No wasted words.
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 tool with one parameter and no output schema, the description sufficiently covers purpose, safety, and outcome. Combined with sibling list and annotations, the agent has good context. Could mention response format or side effects (e.g., network calls) for completeness.
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 only parameter 'id' has schema coverage of 100% with a clear description ('UUID from the stamp record'). The tool description does not add additional meaning beyond the schema, so baseline 3 is appropriate.
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's action: 'Attempts to upgrade a pending OpenTimestamps proof'. The verb 'upgrade' combined with the resource 'timestamp' is specific and distinguishes it from siblings like 'create_timestamp' and 'verify_timestamp'.
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 explains the tool's behavior (upgrade if confirmed, retry if not) and notes it is safe to call repeatedly, but does not explicitly state when to use it over alternatives like 'verify_timestamp' or 'inspect_timestamp'. No exclusions or when-not-to-use guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_timestampARead-onlyIdempotent
Verifies a timestamp proof against the Bitcoin blockchain via an Esplora API. Proves that a specific hash existed before a given Bitcoin block height. Does NOT affirm document authorship, content truth, or legal validity — it only provides a cryptographic proof of existence at a point in time.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | UUID from the stamp record |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, openWorldHint, idempotentHint, destructiveHint=false. Description adds value by disclosing the external API dependency (Esplora), the specific proof constraint (hash existed before a block height), and important limitations (not affirming authorship or validity). This provides behavioral context beyond annotations.
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, no redundancy. Core action is front-loaded, and each sentence adds distinct value: the first explains the mechanism, the second clarifies limitations. Ideal conciseness.
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 tool (one parameter, no output schema), the description covers purpose, method, and constraints. It could mention the return type or expected response (e.g., success/failure or proof details), but the description is sufficiently complete for an AI to decide whether to invoke 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% (the 'id' parameter is described as 'UUID from the stamp record'). The description does not add further parameter-level details. Baseline 3 is appropriate as the schema already documents the parameter adequately.
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 uses specific verb 'Verifies' and clearly identifies the resource ('timestamp proof against the Bitcoin blockchain via an Esplora API'). It distinguishes from siblings by stating what it does not affirm (authorship, content truth, legal validity), making its scope unambiguous.
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?
Implicitly states usage: for cryptographic proof of existence at a point in time. No explicit when-not-to-use or alternative tools mentioned, but the sibling list provides context. Could be improved by directly comparing with related tools like 'inspect_timestamp' or 'stamp_file'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
watchA
Opens a new terminal window that continuously monitors pending stamps and attempts due upgrades at each interval. Useful for long-running monitoring sessions after stamping. The window remains open so the user can watch confirmation progress in real time. Minimum interval is 15 minutes to avoid hammering OTS calendars.
| Name | Required | Description | Default |
|---|---|---|---|
| interval_minutes | No | Polling interval in minutes (default: 30, minimum: 15) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=false (tool may cause changes) and idempotentHint=false. The description adds that the window remains open for real-time progress, attempts upgrades, and enforces a minimum interval. This matches and extends annotation information. No contradiction.
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 consists of four sentences, each serving a distinct purpose: defining the action, stating use case, explaining behavior, and adding a constraint. It is concise with no redundant or extraneous information.
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 tool with one parameter and no output schema, the description covers purpose, behavior, usage context, and rate-limiting constraint. Annotations are also provided. The description is sufficient for an agent to understand and 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 only parameter is interval_minutes, which the schema already describes with default and minimum values. The description does not add additional semantic information beyond what is in the schema. Since schema description coverage is 100%, 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 clearly states the tool opens a terminal window to monitor pending stamps and attempt due upgrades. It uses specific verbs ('monitors', 'attempts') and resource ('pending stamps', 'due upgrades'). It distinguishes from siblings like list_pending (which only lists) and upgrade_timestamp (which upgrades a single timestamp).
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 says it's 'useful for long-running monitoring sessions after stamping' and mentions the minimum interval to avoid hammering OTS calendars. It implies when to use (after stamping) but does not explicitly list alternatives or when not to use. The context of siblings provides some guidance, but direct exclusion is missing.
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.
8 tool updates
v0.7.3- First observed
create_timestamp - First observed
hash_file - First observed
inspect_timestamp - First observed
list_pending - First observed
stamp_file - First observed
upgrade_timestamp - First observed
verify_timestamp - First observed
watch
TDQS
Each tool targets a distinct aspect of the timestamping workflow, but `create_timestamp` and `stamp_file` overlap in purpose (the latter is a convenience that combines hashing and stamping). The descriptions clearly differentiate them, so confusion is unlikely.
Most tool names follow a verb_noun pattern in snake_case (e.g., `create_timestamp`, `hash_file`), but `watch` deviates as a single verb. This minor inconsistency does not hinder understanding.
With 8 tools, the server covers all essential operations for creating, inspecting, upgrading, verifying, and monitoring timestamps without redundancy. Each tool serves a clear purpose within a well-scoped domain.
The tool set covers the core lifecycle of timestamping: hashing, stamping, upgrading, verification, and monitoring. A minor gap is the lack of a direct lookup by stamp ID (inspect requires a proof file), but the overall surface is sufficient for most workflows.
Maintenance
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
Prove your AI work existed first: timestamped, Bitcoin-anchored. Free, no account.
Bitcoin-anchored, tamper-evident audit log for AI agents — record, disclose and verify actions.
Timestamp & verify evidence on-chain, free. Proofpack: a portable BEEF+BUMP proof bundle per txid.
Bitcoin wallet intelligence for AI agents: trust, labels, tx verify, fees, and timestamps.
Related MCP Servers
- AlicenseAqualityDmaintenanceDocument verification MCP server enabling AI agents to verify file authenticity by computing SHA-256 fingerprints locally and checking Bitcoin-anchored proofs via OpenTimestamps.59MIT

markovian-mcpofficial
AlicenseAqualityDmaintenanceBitcoin-anchored provenance for AI outputs; enables stamping, verifying, and tracing outputs with offline-verifiable canonical roots.3Apache 2.0- AlicenseAqualityDmaintenanceEnables AI agents to certify their creations with verifiable, timestamped proof anchored to Bitcoin, and to verify certificates.3MIT
- AlicenseNot gradedqualityFmaintenanceEnables AI agents to create document timestamps on a VerusID, writing directly to the Verus blockchain via a local or remote daemon.39MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/OTSkit/OTSkit-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server